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?



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

Answer / 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

More jQuery Interview Questions

List the advantage of using minimized version of jquery?

0 Answers  


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

0 Answers  


How to include jQuery in ASP.Net project?

0 Answers  


How to check if number is numeric while using jQuery 1.7+?

1 Answers  


What is eq()? : jquery mobile

0 Answers  


Difference Between Prop and Attr in jQuery?

0 Answers  


How to concatenate two strings using jquery?

0 Answers  


What is the difference between the id selector and class selector in jquery?

0 Answers  


Can we call c# codebehind method using jquery?

0 Answers  


Why is not dom ready working for jquery mobile? : jquery mobile

0 Answers  


How to search for descendant elements that match the specified selectors using ?

0 Answers  


Explain why there are two different version of jquery library? : jquery mobile

0 Answers  


Categories