How to populate drop down list with all key values from local storage?

718 Views Asked by At

I have form with Name and Age input field in my html page. I insert the name and age and save the form using local storage.

Next I have a dropdown list and a input field and a display button.

I want to pre-populate the dropdown list will all names I have saved earlier.

1

There are 1 best solutions below

0
On

I use this JavaScript code to build a drop-down on page load using jquery.

$(function() { // On page load
    $.each( localStorage.NAMES.split(","), function(i,val) { // val is the name
        $("#sbc").append("<option value='" + val + "'>"+ val +"</option>");
    });
});

The ID of the dropdown input is 'sbc'