Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
640 views

XmlHttp: How to get the actual statusText from an msxml.xmlhttp object?

A web-server is returning a status code and description in response to a request by an XmlHttp component. The actual status response from the server begins with: HTTP/1.1 400 Not a valid http POST ...
1
vote
2answers
71 views

Response text comparision

i am practicing AJAX, in that i written a code to get the text from a file in server and if it is "0" print"zero" or print "one" if error print "not connected". but something went wrong dont know what ...
1
vote
1answer
719 views

Jquery ajax getting the XMLHttpRequest state

Instead of the typical "Loading..." or animated gif, I want to display a better description of what is going on. (Kind of like what some splash screens do for applications). However, glancing at the ...
0
votes
1answer
85 views

Detect when XMLHttpRequest has connected

I'm trying to detect when a long-running XMLHttpRequest has actually connected to the server. Right now, when I listen for the readystatechange event, it only fires when the request is finished. My ...
0
votes
2answers
57 views

How to update href ID using AJAX

I have a following link in my code: <li onclick="loadNewPage('test')"><a href="#">Link</a></li> When the user click this link, I will use xmlHttpRequest to update some ...
0
votes
2answers
112 views

XmlHttpRequest returning state 4 too soon

I'm developing a javascript code to run on an embedded device using the ANT Galio browser. Ideally, I'd like the code to make a get request to another server. After that get request is made, the ...
0
votes
1answer
171 views

a xmlhttprequest.send() crash in javascript

I was trying to learn XmlHttpRequest. I followed this W3School Tutorial. in the file httprequest.0.js: function myHttpRequestFunction() { if (window.XMLHttpRequest) {// code for IE7+, Firefox, ...
0
votes
1answer
186 views

responseText contains javascript code and the code doesn't load

The string: <script type="text/javascript" src="http://www.google.com/recaptcha/api/challenge?k=6..."></script> comes from a XMLHttpRequest() request, and generated by php, and is then ...