add an element before another jquery code example
Example: 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 _/\_
*/