$.each()
FunctionYou can use the jQuery $.each()
function to easily populate a select box (dropdown list) using the values from a JavaScript object. The $.each()
function can be used to iterate over any collection, whether it is an object or an array. Let's try out an example to see how it actually works:
<!DOCTYPE html>
<html lang="en">
<head>
<title>jQuery Add Options to a Select from a JS Object</title>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script>
// Sample JS object
var colors = { "1": "Red", "2": "Green", "3": "Blue" };
$(document).ready(function(){
var selectElem = $("#mySelect");
// Iterate over object and add options to select
$.each(colors, function(index, value){
$("<option/>", {
value: index,
text: value
}).appendTo(selectElem);
});
});
</script>
</head>
<body>
<label>Color:</label>
<select id="mySelect">
<option value="0">Select</option>
</select>
</body>
</html>
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
How to Set or Unset a Cookie with jQuery
Use the JS document.cookie Property Y...Create Fake Data using Faker and Factory in Laravel 8
In the process of building application,...Laravel 7 - Multiple Image Upload with Preview using AJAX
In this article, i will let you know aja...How to send mail in laravel
Laravel has so many builtin features lik...Laravel 6 - Multiple Files upload with Validation Example
Today, i will share with you How to done...