1<div class="container">
2 <h2>Greetings</h2>
3 <div class="inner">Hello</div>
4 <div class="inner">Goodbye</div>
5</div>
6<script>$( "<p>Test</p>" ).insertAfter( ".inner" );</script>
1Suppose you have to append as below scenario
2
3<select name="username">
4 <option>Select name</option>
5------ i wants my array data gets iterate here ------
6</select>
7
8Js:
9$("select option").after(data);
10
11/*
12I hope it will help you.
13Namaste _/\_
14*/