Skip to content

Instantly share code, notes, and snippets.

@mallond
Created September 11, 2013 02:49
Show Gist options
  • Save mallond/6518773 to your computer and use it in GitHub Desktop.
Save mallond/6518773 to your computer and use it in GitHub Desktop.
Local Storage: IE 9.0
if (window.addEventListener) {
window.addEventListener("storage", storageEventHandler, true);
} else if (window.attachEvent) {
document.attachEvent("onstorage", storageEventHandler);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment