i have a question for you...
for the first lets say i have a variable on javascript like this..
var string = 'a,b,c';
var exploded = string.split(',');
and then i have a html element like this
<ul id='myTags'>
</ul>
and my question is.. how to create / append to inside of my " ul id='myTags' " so it will be like this...
<ul id='myTags'>
<li>a</li>
<li>b</li>
<li>c</li>
</ul>