Skip to content

Instantly share code, notes, and snippets.

@danwarfel
Created December 8, 2015 14:36
Show Gist options
  • Save danwarfel/22737d3a827a863b6e5a to your computer and use it in GitHub Desktop.
Save danwarfel/22737d3a827a863b6e5a to your computer and use it in GitHub Desktop.
// Get click event handler set by JavaScript
document.getElementById("ele").onclick;
// Get event handlers set by jQuery
$("#ele").data("events"); // < jQuery 1.8
$._data("#ele", "events"); // jQuery 1.8+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment