Realign HTML Using Javascript
I have a HTML like this : '''
Solution 1:
Try this : use .after()
$(function(){
$('#r1A').after($('#continue'));
});
Post a Comment for "Realign HTML Using Javascript"