I need to set a breakpoint to certain event, but I don't know, where is it defined, because I've got giant bunch of minimized JS code, so I cant find it manually.
Is it possible to somehow set a breakpoint to for example click event of #registerButton, or find somewhere which function is bound to that event?
I found Firefox addon Javascript Deobfuscator, which shows currently executed JS, which is nice, but the code I need to debug is using jQuery, so there's loads of function calls even on the simplest event, so i cant use that either.
Is there any debugger made especially for jQuery?
Does anybody know some tool that turns minified JS back into formatted
like turn function(){alert("aaa");v=3;}
back into
function() {
alert("aaa");
v = 3;
}