I would like to execute every code step by step after the debugger keyword in Firebug. In the following example JSFiddle the execution halts when the form is clicked because of the debugger keyword in the onclick attribute. Subsequently I click Step Into in Firebug but instead of showing the jQuery code, it shows nothing... How to make Firebug halt at the jQuery code?
<form method="get" onclick="debugger">
<input type="text" name="q" value="">
<input type="submit" value="Search Google">
</form>
jQuery code:
$('form').submit(function() {
document.title = "How to shown this line in debugger?";
return confirm('Are you sure you want to search Google?');
});






debugger, if you want to debug the callback function putdebuggerinside itdebuggerkeyword inside the click event handler, you'll just be able to debug that event handler. What you want to debug, though, is the completely unrelated submit event handler.