Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] IE, Firefox, and XMLHTTPRequest


  • From: matt.murphy at thermofisher.com (Matt Murphy)
  • Subject: [Javascript] IE, Firefox, and XMLHTTPRequest
  • Date: Fri Dec 29 14:52:48 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@xxxxxxxxxx
[mailto:javascript-bounces@xxxxxxxxxx] 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@xxxxxxxxxxxxxx
Webtuitive Design ===  (+1) 408-938-0567   === http://webtuitive.com
                opinion: webtuitive.blogspot.com
				
                          dream.  code.


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