Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

How to stop event propagation with inline onclick attribute in JavaScript ?

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Use HTML DOM stopPropagation() method to stop the event from propagating with inline onclick attribute which is described below:

HTML DOM stopPropagation() Event Method: The stopPropagation() method is used to stop propagation of event calling i.e. the parent event is called we can stop the propagation of calling its children by using the stopPropagation() method and vice-versa.

Syntax:

event.stopPropagation()

Example 1: This example stops the event propagation by adding stopPropagation method on onclick the <span> element.




<!DOCTYPE HTML> 
<html
    <head
        <title
            How to stop event propagation with
            inline onclick attribute
        </title>
          
        <style>
            div {
                background: green;
            }
            span {
                background: red;
                color: white;
            }
        </style>
    </head
      
    <body style = "text-align:center;"
      
        <h1 style = "color:green;"
            GeeksForGeeks 
        </h1
          
        <div onclick= "alert('you clicked the div')">
            <span onclick= "event.stopPropagation(); 
            alert('you clicked Span element(inside the div)');">
                Span Content
            </span>
        </div>
    </body
</html>                    

Output:

  • Before clicking on the element:
  • After clicking on the <span> element:

Example 2: This example stops the event propagation by adding stopPropagation() method on onclick to the <span> element. This example handles the Internet Explorer case by setting window.event.cancelBubble to true.




<!DOCTYPE HTML> 
<html
    <head
        <title
            How to stop event propagation with
            inline onclick attribute
        </title>
          
        <style>
            div {
                background: green;
            }
            span {
                background: red;
                color: white;
            }
        </style>
    </head
      
    <body style = "text-align:center;"
      
        <h1 style = "color:green;"
            GeeksForGeeks 
        </h1
          
        <div onclick= "alert('you clicked the div')">
            <span onclick= "StopEventPropagation(event);
            alert('you clicked Span element(inside the div)');">
                Span Content
            </span>
        </div>
          
        <br>
        <script>
            function StopEventPropagation(event) {
                if (event.stopPropagation) {
                    event.stopPropagation();
                }
                else if(window.event) {
                    window.event.cancelBubble=true;
                }
            }     
        </script
    </body
</html>                    

Output:

  • Before clicking on the element:
  • After clicking on the <span> element:

My Personal Notes arrow_drop_up
Last Updated : 06 Nov, 2019
Like Article
Save Article
Similar Reads
Related Tutorials