I have the following code which works fine, however I wanted to know if there is a better way to add the <br>'s
Is there a better more efficient way to do it.
<script type="text/javascript" language="javascript">
$(function(){
$('#pt656').after($("input[name='btnaddtocart']"));
$('#pt656').after('<br><br>');
});
</script>
You can add space between elements with CSS. Following adds 20px space between elements
#pt656andbtnaddtocart.