Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8056347
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T08:40:35+00:00 2026-06-05T08:40:35+00:00

I don’t really understand what e.stopPropagation() do. If I have a link using return

  • 0

I don’t really understand what e.stopPropagation() do.

If I have a link using return false to the handler I should get what I want (prevent the default link behaviour, so it doesnt “call” the next href location) :

<a id="myLink" href="http://www.google.com">Go to google</a>​

$('#myLink').click(function (e) {
    alert("No, you don't go to Google");
    return false;
});​

Adding e.stopPropagation() what can I get? Can you give to me a solid example showing to me what e.stopPropagation() can do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T08:40:37+00:00Added an answer on June 5, 2026 at 8:40 am

    Easy, stopPropagation stops any events bubbling up to its container, its container’s container etc etc.

    Here’s a live example: http://jsfiddle.net/5B7sw/

    HTML:

    <div id="container">
        <button id="propagate">Propagate</button>
        <button id="nopropagate">Do not Propagate</button>
    </div>
    

    and js:

    $('#container').click(function(){
       console.log('container click') ;
    });
    
    
    $('#propagate').click(function(){
       console.log('propagateclick');
    });
    
    
    $('#nopropagate').click(function(e){
       console.log('nopropagateclick');
        e.stopPropagation();
    });
    

    Clicking the button title “propagate” (default behaviour) will write “propagate click” and “containerclick” to the console. Clicking the button which includes a call to e.stopPropagation() will not print the “container click” message as propagation up to the container has been halted.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Don't have much to say, just can get into the event handler. XAML: <Grid>
Don't really know how to formulate the title, but it should be pretty obvious
Don't get me wrong, I want them to get saved. But I always thought
I don't have much PHP experience and I want to know how to best
Don't want to sort the entries. using this does not preserve the order as
I don't understand why a vector 's iterator should be invalidated when a reallocation
I don't have soap ui pro. I am testing the web service. The actual
Don't know if I worded the question right, but basically what I want to
Don't know how to explain it better but i'm trying to get a response
Don't think that I'm mad, I understand how php works! That being said. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.