Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find whether Ajax request successfully send by Fire-bug add-on?

Tags:

ajax

firebug

Please can some one explain me how to use Fire-bug add-on to check about whether Ajax request successfully send from our application ???

like image 637
SL_User Avatar asked Sep 14 '11 06:09

SL_User


1 Answers

When you turn on Firebug, there's tab called 'Network' - there are shown all requests, especially ajax. The network tab allows you to filter requests and check request/response headers, status code, and message.

So, if you turn on Firebug and open Network tab (it's possible you'll have to enable tracking first, in that case it will show appropriate message), you will see if there was a request, where you expected it should be.

To see only ajax requests, check XHR on top bar, just under general tabs.

like image 99
Adam Jurczyk Avatar answered Sep 20 '22 12:09

Adam Jurczyk