The isImmediatePropagationStopped() method checks whether event.stopImmediatePropagation() was ever called on this event object.
This method returns true in case event.stopImmediatePropagation() method has already been called, otherwise it returns false:
Here is the simple syntax to use this method:
event.isImmediatePropagationStopped()
Here is the description of all the parameters used by this method:
NA
<html> <head> <script type="text/javascript" src="../../js/jquery-2.2.0.js"></script> <script type="text/javascript" language="javascript"> $(document).ready(function() { $("div").click(function(event){ if ( event.isImmediatePropagationStopped() ){ alert( "Event bubbling is disabled - 1" ); }else{ alert( "Event bubbling is enabled - 1" ); } event.stopImmediatePropagation(); if ( event.isImmediatePropagationStopped() ){ alert( "Event bubbling is disabled - 2" ); }else{ alert( "Event bubbling is enabled - 2" ); } }); }); </script> <style> div{ margin:10px;padding:12px; border:2px solid #666; width:160px; } </style> </head> <body> <p>Click on any box to see the Output:</p> <div id="div1" style="background-color:blue;"> Box 1 </div> <div id="div2" style="background-color:red;"> Box 2 </div> </body> </html>
Your Query was successfully sent!