jQuery after and insertAfter methods
Let's consider the use of the after and insertAfter methods using the following example:
$('.www').after('<b>!!!</b>');
$('<b>!!!</b>').insertAfter('.www');
Let's consider the use of the after and insertAfter methods using the following example:
$('.www').after('<b>!!!</b>');
$('<b>!!!</b>').insertAfter('.www');