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 a4fc842 commit bd47479Copy full SHA for bd47479
src/event.js
@@ -1068,6 +1068,11 @@ function liveHandler( event ) {
1068
if ( event.liveFired === this || !events || !events.live || event.button && event.type === "click" ) {
1069
return;
1070
}
1071
+
1072
+ // IE will still dispatch events on disabled elements, so halt it (#6911)
1073
+ if( event.target.disabled ) {
1074
+ return;
1075
+ }
1076
1077
if ( event.namespace ) {
1078
namespace = new RegExp("(^|\\.)" + event.namespace.split(".").join("\\.(?:.*\\.)?") + "(\\.|$)");
0 commit comments