This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan
This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan

I am going to do a little bit more research on this but I think I have found an implementation difference between IE 6, IE 7 and Firefox, centering around XmlHttpRequest.In both browsers, IE and Firefox, the developer can create a script that sends an HttpReqeust out via JavaScript. The following code is pretty standard:httpObj2.open(“POST”, url, false); // Asyn = true, Sync = falsehttpObj2.onreadystatechange = parseSearchResponse;httpObj2.setRequestHeader(“Connection”,”close”); httpObj2.setRequestHeader(“Content-Type”,”application/x-www-form-urlencoded”);httpObj2.send(“query=”+ escape(query)); The above code will send a request synchronosly (it will block at send).
This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan
This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan