> Hello, the following bit of (stripped down) code works fine in IE, but on
> Gecko
[quoted text clipped - 15 lines]
>
> I'd be grateful for any ideas.
What is the problem?
> 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.

Signature
Martin Honnen
http://JavaScript.FAQTs.com/
Jim Lawton - 30 Nov 2005 13:42 GMT
>> var xmlhttp =new XMLHttpRequest();
>> xmlhttp.Open("POST","http://www.anythin.com",false);
[quoted text clipped - 5 lines]
>HTML document loaded via HTTP can with normal security settings only
>connect back to the HTTP server the HTML document has been loaded from.
Yup - you got it. I was using Venkman, and developed blinkers. Because
everything was working fine in IE I was looking in the wrong place.
I'll have to pass the remote data through my "home" server.
Cheers, thanks for the help...
--
Jim
a Yorkshire polymoth