How can I loop from A to Z? I\'d like to populate a select menu with the letters of the alphabet, eg
A &l
Use char codes: JavaScript Char Codes
for (var i = 65; i <= 90; i++) { $('#select_id_or_class').append('' + String.fromCharCode(i) + ''); }