Jquery view related events in IE debugger

I have a problem with binding events, and I need to see if the event is associated with any element. For example, when I have this code

jQuery(selector).bind('load.background', function() { callback.call(this, bgPath);});

Where is this shown in the debugger? I need to see it in the IE developer tools, and there, when I see my variable in the clock, it looks in this imageenter image description here

When I look in the event tree (marked with a small lightning), the load value is null (even if the callback is successful)

So where can I see if and what is tied to any element? Thanks

EDIT: Even in the Chrome debugger, this is null

enter image description here

+3
source share
1 answer

jQuery . "", ?

,

jQuery(selector).bind('#load.background', function() { callback.call(this, bgPath);});
0