What\'s the easiest way to add an option to a dropdown using jQuery?
option
Will this work?
$(\"#mySelect\").append(\'My
This is very simple:
$('#select_id').append('Five');
or
$('#select_id').append($('', { value: 1, text: 'One' }));