How do I display saved data? | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

How do I display saved data?

Hi, I would like to know how I would display the user input of their name as when I create a variable to access the data saved as localStorage, I would like to put it in an alert box as like a notification to display that your email has been saved as “..”

13th Jan 2019, 7:15 PM
Zak Polley
Zak Polley - avatar
1 Respuesta
+ 3
*/Try on other browser not supported on Sololearn code playground <! - - html--> <input type="text" id="email"> <button onClick="saveEmail()">Save email</button> <script> function saveEmail(){ //getting input var email=document.getElementById('email'). value; //saving value to key userE localStorage.setItem("userE", email); //getting saved value with its key alert("Your email has been saved-"+localStorage.getItem("userE")); } </script>
13th Jan 2019, 7:32 PM
Sudarshan Rai
Sudarshan Rai - avatar