DekGenius.com
Team LiB   Previous Section   Next Section
Event.stopPropagation( ) do not dispatch an event any further

Availability

DOM Level 2 Events

Synopsis

void stopPropagation(  );

Description

This method stops the propagation of an event and prevents it from being dispatched to any other Document nodes. It may be called during any phase of event propagation. Note that this method does not prevent other event handlers on the same Document node from being called, but it does prevent the event from being dispatched to any other nodes.

    Team LiB   Previous Section   Next Section