I am looking for a way to extract the options, from a HTML select list, and place them into a comma-delimited list. Some of the lists are rather large, so I am looking for a quick way to do this. Any help is appreciated.
So for example, the list below…
<select>
<option value="325">35</option>
<option value="326">45</option>
<option value="327">55</option>
<option value="328">65</option>
</select>
…would become:
35,45,55,65
you can try something like this on thew client side wit5h jquery
http://jsfiddle.net/b4JBx/ working example