I have an app that can save user input locations in localStorage. When a user goes to the saved locations page in the app, the JavaScript creates divs for each saved location and displays the key text. I want to be able to click each location and run a function. I'm stuck on getting the divs to have hyperlinks. I think the problem is in my loop. "JavaScript:Void(0)" is just a placeholder for the moment. Here is what I have so far:
myApp.onPageInit('saved_locations', function (page) {
             var fragment = document.createDocumentFragment();
             var parent = document.getElementById("saved");
             // iterate localStorage
             for (var i = 0; i < localStorage.length; i++) {
             // set iteration key name
             var key = localStorage.key(i);
             // use key name to retrieve the corresponding value
             var value = localStorage.getItem(key);
             // console.log the iteration key and value
             console.log('Key: ' + key + ', Value: ' + value);
             //var idNum = i.toString();
             let node = document.createElement("div");
             let a = document.createElement("a");
             a.textContent = key;
             a.href = "JavaScript:Void(0)";
             node.appendChild(a);
             fragment.appendChild(node);
             };
             parent.appendChild(fragment);
             var myForm = document.getElementById("enter_location");
             myForm.addEventListener('submit', function saveSearchLocation() {
                                     var lat = document.getElementById('Latitude').value;
                                     var lon = document.getElementById('Longitude').value;
                                     var locationStr = document.getElementById('Location').value;
                                     //Save location parameters to local storage
                                     savedLocationParams = [lat, lon, locationStr];
                                     window.localStorage.setItem(locationStr, JSON.stringify(savedLocationParams));
                                     document.getElementById("saved").onsubmit = function(){
                                     window.location.reload(true);
                                     }
                                });
    });
Here is the HTML page:
<body>
<div class="pages">
   <div data-page="saved_locations" id="saved" class="page navbar-through no- 
toolbar" align="center">
    <h2><br><u>Enter A Location<br><br></u>
        <form id="enter_location">
            Latitude: <input type="text" id="Latitude" value=""><br>
                Longitude: <input type="text" id="Longitude" value=""><br>
                    Location: <input type="text" id="Location" value=""><br>
                    <input type="submit" value="Submit">
        </form>
    <h2><u>Saved Locations</u></h2>
            </div>
</div>
 
    