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*/