We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05aaa33 commit 1960f28Copy full SHA for 1960f28
src/event.js
@@ -57,6 +57,12 @@ jQuery.event = {
57
handle = jQuery.data( elem, "handle", eventHandle );
58
}
59
60
+ // If no handle is found then we must be trying to bind to one of the
61
+ // banned noData elements
62
+ if ( !handle ) {
63
+ return;
64
+ }
65
+
66
// Add elem as a property of the handle function
67
// This is to prevent a memory leak with non-native
68
// event in IE.
0 commit comments