How to trigger the Firebug debugger programatically

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