SitePoint Sponsor |
|
User Tag List
Results 1 to 4 of 4
Thread: AJAX type function
-
Feb 22, 2007, 20:27 #1
AJAX type function
hello!
Code:xmlHttp.onreadystatechange=stateChanged; xmlHttp.open("GET",url,true);
thanks!
-
Feb 23, 2007, 01:10 #2
- Join Date
- Mar 2001
- Posts
- 3,537
- Mentioned
- 0 Post(s)
- Tagged
- 0 Thread(s)
Try this:
Code:xmlHttp.open("POST", url, true); xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); xmlHttp.send("name1=value1&name2=value2");
-
Feb 27, 2007, 01:28 #3
thanks!
-
Mar 5, 2007, 20:30 #4
Bookmarks