Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pixelhijack/9637872 to your computer and use it in GitHub Desktop.
Save pixelhijack/9637872 to your computer and use it in GitHub Desktop.
/*
Raphael.js: unbind all event listeners from an element
*/
Raphael.el.unbindAll = function(){
while(this.events.length){
var e = this.events.pop();
e.unbind();
};
};
// use:
// paper.circle.unbindAll();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment