Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot read JavaScript errors in Firebug console before page reloads

I'm debugging some JavaScript and I have a submit button that should run a jquery function to run a script via Ajax. When I click the button, an error is displayed in the Firebug console but I don't have time to read it before the form is submitted and thus the page is reloaded.

like image 589
Keyslinger Avatar asked Nov 08 '11 19:11

Keyslinger


2 Answers

In version 1.8.3 (at least) you can click the "Persist" button to keep console information around after reload.

like image 198
Scott A Avatar answered Oct 22 '22 14:10

Scott A


Use the Persist button to not clear the console

like image 43
rogerlsmith Avatar answered Oct 22 '22 13:10

rogerlsmith