Does anyone know of a technique to programmatically create an HTML select list including options using JQuery?
I know this is old, but what the hey:
$selectBox.html($.map(myArray, function(){ return $('', {text: this}); }));