Re: XMLHttpRequest post hangs on Firefox / Mozilla
Available news archives: comp.lang.tcl - comp.lang.python - comp.security.firewalls - sci.crypt - comp.lang.php - comp.lang.javascript
Google
 
Web news.hping.org


comp.lang.javascript archive

Re: XMLHttpRequest post hangs on Firefox / Mozilla

From: Martin Honnen <mahotrash@yahoo.de>
Date: Wed Nov 30 2005 - 14:04:39 CET

Jim Lawton wrote:

> var xmlhttp =new XMLHttpRequest();
> xmlhttp.Open("POST","http://www.anythin.com",false);

JavaScript is case sensitive so use
   xmlhttp.open("POST", "url", false);
and I guess all is fine. Check the JavaScript console for error messages
if you still have problems. You need to be aware too that script in a
HTML document loaded via HTTP can with normal security settings only
connect back to the HTTP server the HTML document has been loaded from.

-- 
	Martin Honnen
	http://JavaScript.FAQTs.com/
Received on Sat Dec 3 04:33:28 2005