I need to set a breakpoint for a specific event, but I donโt know where it is defined, because I have a giant piece of minimized JavaScript code, so I can not find it manually.
Is it possible to somehow set a breakpoint, for example, a click event of an element with the identifier registerButton or find somewhere which function is bound to this event?
I found the Firefox Javascript Deobfuscator add- in that shows the currently executed JavaScript, which is good, but the code I need to debug uses jQuery , so there are a lot of function calls even on the simplest event, so I can't use this either.
Is there any debugger specifically designed for jQuery ?
Does anyone know of any tool that turns restored JavaScript back into formatted code, for example, return function(){alert("aaa");v=3;} back to
function() { alert("aaa"); v = 3; }
javascript jquery debugging firebug
Jakub Arnold Apr 05 '09 at 11:34 2009-04-05 11:34
source share