How to trigger the Firebug debugger programatically
$('form').submit(function() {
debugger; // This will open the Firebug debugger
$.post(this.action, $(this).serialize(), null, "json");
return false;
});
$('form').submit(function() {
debugger; // This will open the Firebug debugger
$.post(this.action, $(this).serialize(), null, "json");
return false;
});