[Javascript] IE, Firefox, and XMLHTTPRequest

Matt Murphy matt.murphy at thermofisher.com
Fri Dec 29 14:52:24 CST 2006


Yes, that's the conclusion I came to, but I'm trying to figure out what
should be in that variable data... Do I need the full http message, or a
key and value pair, or what? 

Any help is appreciated, nothing I've tried so far has worked. 

Matt 

-----Original Message-----
From: javascript-bounces at LaTech.edu
[mailto:javascript-bounces at LaTech.edu] On Behalf Of Hassan Schroeder
Sent: Friday, December 29, 2006 1:40 PM
To: [JavaScript List]
Subject: Re: [Javascript] IE, Firefox, and XMLHTTPRequest

Matt Murphy wrote:

>         http_request.open('POST', url, true);
>         http_request.send(null);

Have you tried using send() as it's intended?? e.g.

	url= "notes.php";
	data = "action=yaddayadda&....";
	http_request.open('POST', url, true);
	http_request.send(data);

Just a suggestion :-)

--
Hassan Schroeder ----------------------------- hassan at webtuitive.com
Webtuitive Design ===  (+1) 408-938-0567   === http://webtuitive.com
                opinion: webtuitive.blogspot.com
				
                          dream.  code.


_______________________________________________
Javascript mailing list
Javascript at LaTech.edu
https://lists.LaTech.edu/mailman/listinfo/javascript



More information about the Javascript mailing list