Q:

Select values from a JSON object using jQuery

0

Select values from a JSON object using jQuery.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-git.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Select values  from a JSON object using jQuery.</title>
</head>
<body>
<div id="divSelect"></div>
</body>
</html>

JavaScript Code :

colors = { "color1": "Red", "color2": "Green", 'color3': "Blue" };

$.each(colors, function(key, value) {
    $('#divSelect').append($("<option/>", {
        value: key,
        text: value
    }));

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now