Skip to content

Instantly share code, notes, and snippets.

@gists-app-test
Forked from asimpson/eventListener.js
Created September 12, 2012 14:28
Show Gist options
  • Save gists-app-test/3706970 to your computer and use it in GitHub Desktop.
Save gists-app-test/3706970 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