Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Created July 16, 2017 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vanaf1979/8fc51bc782b3c65696d43a59aa20c98d to your computer and use it in GitHub Desktop.
Save vanaf1979/8fc51bc782b3c65696d43a59aa20c98d to your computer and use it in GitHub Desktop.
Add an event listner
function addEvent( ellement , type , callback )
{
if ( ellement.attachEvent )
{
ellement.attachEvent( 'on' + type , callback );
}
else
{
ellement.addEventListener( type , callback );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment