Hi,
I have setup onclick event handeler in the following manner:
element.onclick = fuction() { /*code */ }
Imagine there are event handlers setup using jquery method bind() or similar handlers.
$('element').bind('click', function(){/*another function*/})
How can I prevent invoking handler defined with jquery from the handler I have described in the begining?
NB stopPropagation() and etc. jQuery's methods doesn't work from that function, because it is passed with native event object.
Thank you.