Focused support of .live(). stopPropagation and stopImmediatePropagation are not...
[jquery.git] / src / event.js
index 5ae4bad..fdf61ba 100644 (file)
@@ -572,9 +572,8 @@ function liveHandler( event ){
        });
 
        jQuery.each(elems, function(){
-               if ( !event.isImmediatePropagationStopped() &&
-                       this.fn.call(this.elem, event, this.fn.data) === false )
-                               stop = false;
+               if ( this.fn.call(this.elem, event, this.fn.data) === false )
+                       stop = false;
        });
 
        return stop;