Skip to content

Instantly share code, notes, and snippets.

@Andy-set-studio
Created December 2, 2019 15:24
Show Gist options
  • Save Andy-set-studio/a2b65d12b33a4bc0371b6d64ad707265 to your computer and use it in GitHub Desktop.
Save Andy-set-studio/a2b65d12b33a4bc0371b6d64ad707265 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