Llenando un droplist con jqery (pero usando metodos val() y html(), para no escribir toda la cdena de texto de una sola ves)

Al estilo:     <select name="select-native-17" id="select-native-17">         <option value="1">The 1st Option</option>         <option value="2">The 2nd Option</option>         <option value="3" selected="selected">The 3rd Option</option>         <option value="4">The 4th Option</option>     </select>

by limd

HTML

<select id="select">
</select>

JavaScript

$("#select").append($("<option></option>").val(1).html("One"));
$("#select").append($("<option></option>").val(2).html("Two"));
$("#select").append($("<option></option>").val(3).html("Three"));