HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery event.stopPropagation() Method</h1> <div style="border:1px solid black;"> Click on this div. <p>Click on this paragraph.</p> </div> <script> $(document).ready(function(){ $("div").click(function(e){ alert("div is clicked"); }); $("p").click(function(e){ alert("p is clicked"); e.stopPropagation(); }); }); </script> <p><strong>Note</strong>: Try to remove 'e.stopPropagation()' and then click on the paragraph.</p> </body> </html>
OUTPUT
×

Save as Private