[jQuery] cancel jQuery binded event handlers

[jQuery] cancel jQuery binded event handlers


Hi all,
I am trying to cancel event propagation in handler I have defined in
the following manner:
element.onclick = fuction() { /* first handler */ }
I have also defined handler with jQuery: $('element').click( function()
{ /*second handler*/ } )
So the point is I want to prevent invocation of second handler and do
this only in first handler.
I can't call element.unbind() method in first handler, because it will
do this forever. I need to discard invocation for concrete case which
I check in first handler.
Any help will be appreciated!