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

Tell me which program is useful for testing jquery?

731


What is the need for jquery? : jQuery Mobile

869


What programming language does jquery use?

789


What are two different version of jquery library? : jquery mobile

782


What is the use of jQuery load method?

838


What is the purpose of fadetoggle() method in jquery?

744


What is .detach()? : jquery mobile

856


What is the difference between $(window).load and $(document).ready function in jquery?

779


Can you please explain the difference between body onload() and document.ready() function? : jquery mobile

745


What is jQuery CDN?

818


explain width() vs css(‘width’) in jquery

793


What is the difference between jquery-x.x.x.js and jquery.x.x.x min.js?

810


How to submit a form without submit button using jquery?

796


Tell me how do you stop the currently-running animation? : jquery mobile

728


What is .remove()? : jquery mobile

778