add after a div jquery code example
Example 1: add div after div jquery
$( "<p>Test</p>" ).insertAfter( $( ".container" ) );
Example 2: append after an element jquery
Suppose you have to append as below scenario
<select name="username">
<option>Select name</option>
------ i wants my array data gets iterate here ------
</select>
Js:
$("select option").after(data);
/*
I hope it will help you.
Namaste _/\_
*/