Guest User

Untitled

a guest
Aug 24th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. // Retrieve a data field from a specific DOM element.
  2. // <label id="userid_1" data-userid="[email protected]"> Selected email: </label>
  3.  
  4. $("#userid_1").data('userid');
  5.  
  6. // Use of localStorage key-value pairs
  7.  
  8. localStorage.setItem("gh_user", $("#gh_user_index").val());
  9. localStorage.getItem("gh_user");
Advertisement
Add Comment
Please, Sign In to add comment