Skip to content

Instantly share code, notes, and snippets.

@ldmarz
Created June 27, 2018 14:32
Show Gist options
  • Save ldmarz/814487dbc004a86e3c2a5010a5abb137 to your computer and use it in GitHub Desktop.
Save ldmarz/814487dbc004a86e3c2a5010a5abb137 to your computer and use it in GitHub Desktop.
Get list of events bound on an element with jQuery
console.info($._data($(document)[0], 'events'));
// Example output
// {
// "mousedown": [
// {
// "type": "mousedown",
// "origType": "mousedown",
// "guid": 1,
// "namespace": ""
// }
// ],
// "mousemove": [
// {
// "type": "mousemove",
// "origType": "mousemove",
// "guid": 2,
// "namespace": ""
// }
// ]
// }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment