jQuery event sniffer?

jQuery event sniffer?

I have a problem with a page that uses intensive jQuery code.
 
After a little while, IE 8 uses up to 90% of the CPU and the PC is getting very slow.
Refreshing the page solves the problem, so I'm pretty sure something goes wrong with my jQuery code.
 
As this page binds and uses many events (onclick, onkeypress, onchange, etc), I'm wondering if there is a dead loop somewhere in the event chain, but this is pretty hard to debug as I can't find a way to reproduce the problem which happens randomly.
 
So I'm wondering if there is a way to trace all bound events and log them to Firebug console, even the events that I don't bind myself. That way I could see if there is a huge event log when the CPU load gets high.
 
Thanks