Table of Contents

Method StopPropagation

Namespace
SharpVectors.Dom.Events
Assembly
SharpVectors.Core.dll

StopPropagation()

(DOM Level 2) Prevent event listeners of the same group to be triggered.

void StopPropagation()

Remarks

This method is used to prevent event listeners of the same group to be triggered but its effect is differed until all event listeners attached on the currentTarget have been triggered. Once it has been called, further calls to that method have no additional effect.

Note: This method does not prevent the default action from being invoked; use preventDefault for that effect.

See Also