I would like to create a select with options dynamically at the starting page on function document.ready.
Can i to do that?
I try, but it doesn't works.
$('#form').append('<select id="myselect" name="myselect">/select>');
$('#myselect').append('<option title="#" value="">GREEN</option>');
Thank you.