The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
122 views

Script onreadystatechange race condition in Internet Explorer for multiple jQuery versions

imagine the following setup: A page that has an old jQuery version (say 1.5.2) - that I have no control over - loads a Javascript file from my servers that also need jQuery, but a more recent version. ...
1
vote
1answer
68 views

onreadystatechange function never gets called

Ok...so my code is very simple. The only problem is that the function to be called onreadystatechange is never getting executed. I put in an alert to display the readyState and the status of xmlhttp ...
1
vote
0answers
68 views

Ajax ready state not stuck on 1

after searching the internet I was unable to find an answer as to why my AJAX code is not working. My assignment is to retrieve a text file and display it to the browser using AJAX but the ready state ...
0
votes
0answers
25 views

javascript callback error on mobile

I have a javascript script that loads after the site is loaded. and it loads some css files and html, it works great on desktops browsers. BUT when it loads on mobile the call back function is not ...
0
votes
0answers
100 views

Javascript XMLHttpRequest and Data from Array

if on function run() "url = 'http://localhost/' + Math.random().toString(36).substr(2,16) + '.html';" , xmlhttp.status == 404 is called... but "url = 'http://' + sData[0] + '/' + ...
0
votes
0answers
55 views

Is there any reason why onreadystatechange wont do anything for css header link in safari?

I made a bookmarklet that loads several header. some JS some css. after i create the header element i do a onreadystatechange to check when the included header was loaded. However for some reason ...
0
votes
1answer
148 views

Calling xmlhttp.onreadystatechange=function() via PHP

So, here is the issue: I am trying to handle some edits within a PHP file that is being passed an ID field. The PHP file is successfully building the HTML page and displaying it, but portions of the ...
1
vote
1answer
52 views

cant do “GET” xmlhttrequest - error

function regist(nome,pwd){ URL+="register?nick=" + nome + "&key=" + pwd; var req = new XMLHttpRequest(); req.open("get", URL, true);//Assincrono ...
0
votes
2answers
165 views

My onReadyStateChange is never called,why?

my code is simple. function useXMLHttpRequest() { var xmlhttp = new XMLHttpRequest(); xmlhttp.open("POST", "test.ashx", false); xmlhttp.setRequestHeader("Content-Type", ...
1
vote
3answers
166 views

Need Help Understanding Ajax Function

So I just finished writing my first Ajax function. I did it all from a google tutorial and w3schools and it's finally working. The only problem is I don't fully understand the logic of what is ...
3
votes
3answers
183 views

Call order of jQuery ready callback

If have two javaScript functions in a page which are required to be called when document load is complete. Is is possible that any function can executed first or it will be the first function which is ...
0
votes
3answers
203 views

POST'ing with AJAX in JavaScript, onreadystatechange needed?

When coding some JavaScript to send a POST (instead of a GET) back to the webserver, I wondered whether you need to define the XMLHttp.onreadystatechange? My code so far looks like this: ...
0
votes
1answer
203 views

Javascript read text file issue

I have a text file ("sample.txt") residing on a server, the content of which changes at random intervals (anything from 250 ms to 10 seconds). The script below reads this text file every half a second ...
0
votes
0answers
125 views

Javascript/Ajax onreadystatechanged function with a unique id for a like button

I am so close to this like button working >.< So far, I have a php/html part to it for the actual page: <?php $ILIKE = mysql_query("SELECT * FROM forum_like WHERE pid = '$POST->id' AND ...
0
votes
1answer
657 views

Onreadystatechange not not working after header redirection in Chrome

I have made a userscript for a forum that resizes images. It works great, except for after posting or editing where it redirects, where onreadystatechange does not fire in Google Chrome. When viewing ...
1
vote
3answers
2k views

Stop page refresh

I'm writing a small piece of code which takes input from a user via html form to then retrieve information (in xml) from a server (which is running locally) using XMLHttpRequest, once I get the ...
1
vote
3answers
439 views

How to imitate cross-browser $(document).ready() behavior without JQuery [duplicate]

Possible Duplicate: $(document).ready equivalent without jQuery I have a script I need to write that needs to execute on DOM ready, but I can't have dependency on JQuery as part of the ...
0
votes
1answer
315 views

Javascript Ajax save result of onreadystatechange in global variable

I'm trying to write a script to retrieve a WOEID and interface with the Yahoo Weather API. I'm constructing a URL based on latitude and longitude values from stuff in a database I'm using, and can do ...
1
vote
0answers
147 views

server crashes when i use onreadystatechange

I am trying to create a chat for my website. To load the new data, i run a function every 1.5''. If i use asynchronous mode, my website is fast, my server does not crash, but browser freezes until ...
0
votes
2answers
119 views

AJAX - Order of commands with XMLHttpRequest (Newbie)

In most examples I found on the Internet , I see something like this : ajaxRequest.onreadystatechange = function(){ if(ajaxRequest.readyState == 4){ document.myForm.time.value = ...
2
votes
1answer
1k views

JS Ajax onreadystatechange is not defined although object exists

I am struggling with this for a day now, and going in circles and help would be greatly appreciated :-) Abstract Asynchronous ajax calling cgi with resolver and fqdn variables in order to return a ...
0
votes
1answer
792 views

Object Oriented JavaScript - AJAX class

Working on an AJAX class. Here is the code: function AjaxRequest(params) { if (params) { this.params = params; this.type = "POST"; this.url = "login.ajax.php"; ...
0
votes
2answers
135 views

In javascript callback function not getting value of existing object property

I'm loading js by creating script tag on the fly, I have written a callback function on script load, but when functions get called after js get loaded, I can't access my object property, when I ...
4
votes
1answer
592 views

History.js onstatechange in IE7 does not work

I integrated History.js and this piece of code runs on URL change: History.Adapter.bind(window,'statechange',function(){ var State = History.getState(); alert(State.url) ...
0
votes
0answers
85 views

Trouble re-populating a datatable in jquery

I am building a page for Cerner PowerChart using html, javascript and jquery. I have a datatable that displays as expected when my html page loads. The user can then select a different date range and ...
4
votes
2answers
3k views

dynamically creating script: readyState never “complete”

I'm trying to do something AFTER a script is completely loaded. (IE8) Script I use for testing: http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js and the invalid one: ...
3
votes
1answer
359 views

Clear stdout in Python after flush()

I'm trying to make my Python script stream its output to my webpage as its printed. So in my javascript I do: var xmlhttp; var newbody = ""; xmlhttp=new XMLHttpRequest(); ...
0
votes
1answer
2k views

Problem parsing large json using eval and alternative

I'm trying to parse a large json file (240'000 chars) using javascript. I'm using ajax to retrieve json data from a servlet. The code I'm using works fine with smaller samples but just throws this out ...
1
vote
1answer
78 views

AJAX Results in Div Dissapearing

Using AJAX to call a CGI script which opens a file and prints it out in a DIV. This works fine on a test page I have but for some reason in another page it will print the contents into the DIV and ...
0
votes
2answers
1k views

Can I use jQuery prefilters to detect onreadystatechange events where readyState==3?

I'm trying to implement the XHR streaming Comet technique in jQuery, but am having some trouble detecting the onreadystatechange event. I'm using Firefox 4.0.1. I'm using prefilters (available since ...
3
votes
1answer
177 views

Are there useful uses of readyState different from “4” (complete) in a XHR.onreadystatechange callback?

Have you ever used an XHR object to intercept onreadystatechange with a readyState different from "4" (complete) ? I'm curious to know if you ever trigger a function with the possible different ...
0
votes
2answers
485 views

onreadystatechange in a loop, readystate changes too late

I issue in a loop a total of eight xmlhttprequests to a Google map server and process the json objects the server returns to retrieve the zip codes. The code works fine if the xmlhttprequests are ...
7
votes
2answers
3k views

document.readystate of “interactive” vs. ondomcontentloaded?

Could anyone tell me the difference between the "interactive" state of document.readyState and "DOMContentLoaded"? I couldn't find a lot of info on the "interactive" state and what specifically is ...
1
vote
2answers
1k views

Retrieving Value from Anonymous Function & onreadystatechange

I have a function from which I would like to return a value as a series of events whenever a button is clicked. However, I can't figure out how to retrieve the value from onreadystatechange. How can I ...
2
votes
1answer
707 views

Onreadystatechange callback behaviour for XMLHttpRequest

If XMLHttpRequest is used with asynchronous mode, then are the onreadystatechange callbacks for 0,1,2 states called in UI thread only or in the background thread? And is it possible that this ...
1
vote
1answer
894 views

javascript class calling XMLHttpRequest internally, then handling onreadystatechange

this thing almost works: function myClass(url) { this.source = url; this.rq = null; this.someOtherProperty = "hello"; // open connection to the ajax server this.start = function() { if ...
0
votes
1answer
674 views

VB6: get onreadystate value from browser control

i'm trying to get the onreadystate value from the browser control do detect when the page has finished loading. unfortunately the event's .returnValue returns empty. what's wrong? here's my code - ...
0
votes
1answer
1k views

javascript SOAP xmlhttprequest issue mobile

All right, so previously I asked... SOAP Prototype AJAX SOAPAction Header Question (can't hyperlink it unfortunately, not enough rep for "2" links... see below) Which never worked out. I think it ...
1
vote
2answers
508 views

access response from .NET webservice in callback function on HTML page

I am trying to call a .net webservice from HTML page. This HTML page will be hosted on a different server. I using the following html code for this. The webservice code is below HTML code. This code ...
4
votes
3answers
5k views

onreadystatechange in jQuery v1.4

The new jQuery v1.4 says this... jQuery.ajax() is now using onreadystatechange instead of a timer Ajax requests should now take fewer resources by using onreadystatechange instead of polling. I ...