Skip to content

Instantly share code, notes, and snippets.

@asimpson
Created September 12, 2012 14:11
Show Gist options
  • Save asimpson/3706861 to your computer and use it in GitHub Desktop.
Save asimpson/3706861 to your computer and use it in GitHub Desktop.
eventListener IE8 and below
/* window.addEventListener( "resize", mmListener);
mmListener();*/
if (window.addEventListener) {
window.addEventListener("resize", mmListener);
} else if (window.attachEvent) {
window.attachEvent("resize", mmListener);
}
mmListener();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment