stops processing of an event beyond the current target (called in some event handler)
ev | Event | a native HTML event |
boolean | false |
<a id="mylink" href='http://google.com'>Google</a>
document.getElementById("mylink").onclick = function(e)
{
alert("The link doesn't redirect us to the Google page anymore");
return webix.html.stopEvent(e);
}