Is there a way to check if an event exists in jQuery? I'm working on a plugin that uses custom namespaced events, and would like to be able to check if the event is binded to an element or not.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
You can inspect by feeding the object reference ( not the jQuery object though ) to $.data, and for the second argument feed 'events' and that will return an object populated with all the events such as 'click'. You can loop through that object and see what the event handler does. |
|||||||||||||||||
|
|
|
|||||||||
|
|
You may use:
to make sure all click events are unbinded, then attach your event |
|||||||||||
|
|
I wrote a plugin called hasEventListener which exactly does that. Hope this helps. |
||||
|
|
|
Below code will provide you with all the click events on given selector:
You can iterate over it using each or for ex. check the length for validation like:
Thought it would help someone. :) |
|||
|
|
|
Here's how to check if any event exists for an element
|
|||
|
|
|
I ended up doing this
|
|||
|
|
$.data(element, "events")was never official. But in jQuery 1.8.0 this method got left via$._data(element, "events"). read more here – Anton Aug 19 '12 at 3:10