If you specifically want to insert after the another div element, try insertAfter:
$('<div>Another 2</div>').insertAfter($('.another'));
In the $('.another') part, you can otherwise specify the target more precisely.
If you specifically want to insert after the another div element, try insertAfter:
$('<div>Another 2</div>').insertAfter($('.another'));
In the $('.another') part, you can otherwise specify the target more precisely.