Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save triptych/1950e462994402b42fc0df4a0802b526 to your computer and use it in GitHub Desktop.

Select an option

Save triptych/1950e462994402b42fc0df4a0802b526 to your computer and use it in GitHub Desktop.
Super basic local storage
const textArea = document.querySelector('textarea');
const storageKey = 'text';
const init = () => {
textArea.value = localStorage.getItem(storageKey);
textArea.addEventListener('input', () => {
localStorage.setItem(storageKey, textArea.value);
});
}
init();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment