append html after specific div jquery code example
Example 1: append after element jquery
$("p").after(" <b>You can write your Text Here </b>.");
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 _/\_
*/