The same as other answers, in a jQuery fashion:
$.each(selectValues, function(key, value) {
$('#mySelect')
.append($("<option></option>")
.attr("value", key)
.text(value));
});
The same as other answers, in a jQuery fashion:
$.each(selectValues, function(key, value) {
$('#mySelect')
.append($("<option></option>")
.attr("value", key)
.text(value));
});
Flisks is a developer, digital marketing, SEO, and blogging enthusiast. Apart from copywriting, he loves travel, music, and adventures. He is a passionate learner and a dreamer.