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

Explain various methods to make ajax request in jquery? : jquery mobile

754


Explain the concepts of "$ function" in jquery with an example?

798


What to do to select element having a particular class (".selected")? : jquery mobile

761


Define the script build up by jquery?

817


What is the use of param() method?

846


Does jquery follow w3c recommendations?

779


How to validate email using jquery?

825


How to give face effect in jquery?

746


Difference between javascript and jquery? : jQuery Mobile

769


How we can check if an element is empty or not using jquery?

702


What is each() function in jQuery? How do you use it?

740


Can JQuery Run on MAC or Linux instead of Windows?

789


What is the purpose of jquery?

788


With jquery which operating system is more compatible?

793


What features of jquery, has been used in web applications?

737