Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

View ajax requests in internet explorer?

Is there a way to view the ongoing ajax requests in internet explorer like firebug in google chrome and firefox allows you to see?

For some reason my IE is getting stuck on an ajax request, it starts the request but the loading message I put in never goes away, leaving me clueless as to what happened, whether the request failed and if so, why. The same request works in FF and chrome.

like image 435
Ali Avatar asked Jun 06 '12 01:06

Ali


People also ask

Does Internet Explorer support AJAX?

Ajax is supported in all modern browsers.

Are AJAX requests HTTP requests?

An AJAX request is a request made by an AJAX application. Typically, it is an HTTP request made by (browser-resident) Javascript that uses XML to encode the request data and/or response data.

How many AJAX requests are there?

By default, the JavaScript Agent limits the Ajax requests (using XHR or the Fetch API) sent for base or virtual pages. The limit is 250 requests for single-page applications (SPAs) and 50 for non-SPAs.


2 Answers

Press F12 if you are using IE8 or up or install firebug for IE.

or install

Firebug Lite for IE

like image 178
Raab Avatar answered Sep 24 '22 20:09

Raab


If you're using IE9, you should definitely be using the Developer tools. If you're using an earlier version of IE, try the Firebug Lite bookmarklet

You wont see network requests, but it does give you access to the console.log()

javascript:(function(F,i,r,e,b,u,g,L,I,T,E){if(F.getElementById(b))return;E=F[i+'NS']&&F.documentElement.namespaceURI;E=E?Fi+'NS':Fi;Er;Er;Er;(Fe[0]||Fe[0]).appendChild(E);E=new%20Image;Er;})(document,'createElement','setAttribute','getElementsByTagName','FirebugLite','4','firebug-lite.js','releases/lite/latest/skin/xp/sprite.png','https://getfirebug.com/','#startOpened');

Just paste that string into the address bar in IE after you've loaded your page.

like image 23
Jason Kulatunga Avatar answered Sep 24 '22 20:09

Jason Kulatunga