[jQuery] Catching events when jQuery fires

[jQuery] Catching events when jQuery fires


One big problem I keep on running into is that event handlers don't
fire when the event is called via jQuery.
For instance, I want to disable submitting a form:
jQuery('form').bind('submit', function() { return false; })
Works like a charm. But, if I use jQuery then to submit the form, it
still does it! Likewise with onclick events, etc. Is there any
solution?