Is there a way to check for a closed console console error in Firebug?

I have a scenario where I make an AJAX request on a tab close and I want to see information about that request.

Is it possible to use Firebug to check for errors caused by an AJAX request after closing a bookmark?

+3


source to share


1 answer


The Firebug activation model is based on URLs following a policy of the same origin and the data displayed is tied to the specific tab you are looking at, or more precisely to the same document. So when you close the tab, the information is gone.

There are two ways to get information about a request though:



  • Don't close the tab

    Just don't close the tab and make a request for another event on your page to debug it.

  • Use browser console

    The internal browser console displays all messages and errors that occur on all tabs, even after they are closed. To open this console, click Ctrl+ Shift+ Jor choose Firefox> Developer> Browser Console.

0


source







All Articles