Event Canceling
An event can be prevented from continuing the auto-event handling path by returning false.
You can also set the event object's returnValue property to false.
To prevent the event from bubbling up to parent event handlers, you'll need to set the event object's cancelBubble property to true.