Skip to content

Instantly share code, notes, and snippets.

@VandeurenGlenn
Forked from tomasperezv/gist:5175807
Last active August 29, 2015 14:19
Show Gist options
  • Save VandeurenGlenn/1e7dd2ee08a6c3a4a8b7 to your computer and use it in GitHub Desktop.
Save VandeurenGlenn/1e7dd2ee08a6c3a4a8b7 to your computer and use it in GitHub Desktop.
Example of listening to local storage changes
if (window.addEventListener) {
window.addEventListener("storage", onStorage, false);
} else {
window.attachEvent("onstorage", onStorage);
};
var onStorage = function(data) {
// Receive changes in the localStorage
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment