I have a form and I try to submit it but nothing happens. I can see $(‘#myform’).submit() gets called but then nothing happens. I’m guessing that somewhere the submit event is getting caught ‘silenced’. Is there a way for me to find out where this event gets caught?
update Darin Dimitrov suggestion helped me to figure out where exactly submit is handled. I was able log handlers for submit events. Then I set break points inside of the handlers and stepped through code to figure out where my submit process was being ‘cancelled’. p.s. I’m looking at log and debugging in firebug of course.

To find out which submit event handlers are registered to your form you could use the following to print them to the console:
This obviously assumes that those event handlers have been registered with jQuery.