Guest User

Untitled

a guest
Feb 25th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. function rememberName(){
  2. var firstName = document.getElementById("firstName").value;
  3. var lastName = document.getElementById("lastName").value;
  4. if (typeof(Storage) !== "undefined") {
  5. localStorage.firstName = firstName;
  6. localStorage.lastName = lastName;
  7. } else {
  8. alert("This example won't work because your browser doesn't support web storage.");
  9. }
  10. loadApiPage();
  11. }
Add Comment
Please, Sign In to add comment