Files
plastic-hub-dev-node-saturn 538369cff7 latest
2021-05-12 18:35:18 +02:00

1 line
1.1 KiB
JSON

{"name":"event.isPropagationStopped","type":"method","title":"event.isPropagationStopped()","deprecated":null,"removed":null,"desc":" Returns whether <ahref=\"/event.stopPropagation/\">event.stopPropagation()</a> was ever called on this event object. ","categories":["events/event-object","version/1.3"],"entries":[{"return":"Boolean","signatures":{"added":"1.3"},"examples":{"desc":"Checks whether event.stopPropagation() was called","code":"\nfunction propStopped( event ) {\n var msg = \"\";\n if ( event.isPropagationStopped() ) {\n msg = \"called\";\n } else {\n msg = \"not called\";\n }\n $( \"#stop-log\" ).append( \"<div>\" + msg + \"</div>\" );\n}\n\n$( \"button\" ).click(function(event) {\n propStopped( event );\n event.stopPropagation();\n propStopped( event );\n});\n","html":"\n<button>click me</button>\n<div id=\"stop-log\"></div>\n "},"longdesc":"\n <p>This event method is described in the <a href=\"http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/events.html#Events-Event-isPropagationStopped\">W3C DOM Level 3 specification</a>.</p>\n "}]}