Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Created July 16, 2017 13:43
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/5ab09a29d8520b7bc8a31d7db3420531 to your computer and use it in GitHub Desktop.
Save vanaf1979/5ab09a29d8520b7bc8a31d7db3420531 to your computer and use it in GitHub Desktop.
Remove an event listner
function removeEvent( ellement , type , callback )
{
if ( ellement.detachEvent )
{
ellement.detachEvent( 'on' + type , callback );
}
else
{
ellement.removeEventListener( type , callback );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment