for ( ; cur !== this; cur = cur.parentNode || this ) {
+ // Don't check non-elements (#13208)
// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)
- if ( cur.disabled !== true || event.type !== "click" ) {
+ if ( cur.nodeType === 1 && (cur.disabled !== true || event.type !== "click") ) {
matches = [];
for ( i = 0; i < delegateCount; i++ ) {
handleObj = handlers[ i ];
equal( matched, 0, "Nothing matched 'toString'" );
});
+test( "delegated event with intermediate DOM manipulation (#13208)", function() {
+ expect(1);
+
+ jQuery("#foo").on( "click", "[id=sap]", function() {});
+ jQuery("#sap").on( "click", "[id=anchor2]", function() {
+ document.createDocumentFragment().appendChild( this.parentNode );
+ ok( true, "Element removed" );
+ });
+ jQuery("#anchor2").trigger("click");
+});
+
test("stopPropagation() stops directly-bound events on delegated target", function() {
expect(1);