Skip to content

Instantly share code, notes, and snippets.

@praveen-me
Created September 20, 2018 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save praveen-me/a5c11606f6893a9d5840b17095713b74 to your computer and use it in GitHub Desktop.
Save praveen-me/a5c11606f6893a9d5840b17095713b74 to your computer and use it in GitHub Desktop.
Chrome Extension Blog
//function for set User Details
function getDetails(e) {
e.preventDefault();
const userName = document.getElementById('user-name_value').value;
JSON.stringify(localStorage.setItem('userNameKey', userName));
userDetailsBlock.style.display = "none";
greetBlock.style.display = 'block';
setGreet();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment