Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is the difference between event.stopPropagation and event.stopImmediatePropagation?

Answer Posted / chaitanya

event.stopPropagation() allows other handlers on the same element to be executed, while event.stopImmediatePropagation() prevents every event from running. For example, see below jQuery code block.

Hide Copy Code

$("p").click(function(event){

event.stopImmediatePropagation();

});

$("p").click(function(event){

// This function won't be executed

$(this).css("background-color", "#f00");

});

If event.stopPropagation was used in previous example, then the next click event on p element which changes the css will fire, but in case event.stopImmediatePropagation(), the next p click event will not fire.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is .siblings() method in jquery?

844


How to resolve conflicts with other libraries?

867


What is the starting point of code execution in jquery?

788


What is the use of css() method in jquery?

848


Differentiate among .empty() vs .remove() vs .detach() in jquery.

847


What is a jquery library?

801


How to run an event handler only once in jQuery?

899


How to prevent Right Click option using jquery?

835


What is the use of jQuery.data() method?

873


Explain data paremeter of jquery ajax method?

6951


Can we include multiple version of jquery? : jquery mobile

752


How do you add an HTML element in DOM tree?

853


Is jquery still relevant 2019?

871


Why jQuery is needed?

862


Explain source maps in jquery? : jquery mobile

792