Select values from a JSON object using jQuery.
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 }));
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
HTML Code :
JavaScript Code :