Question : AJAX and IE

I'm using AJAX for the first time and while writing some code I noticed that IE appeared to be miss-behaving.  Attached below is the test case showing the issue.   This appears to fail with IE 6 and IE 7.   Works fine with firefox and chrome.

In the code I have a number of alerts showing the path through the code and everything works ok until (with IE only) the call to the call back function setOutput.  With IE the second time the doAjax script is invoked, setOutput's never called (or at least there is never a ready state of 4).

The way to reproduce this, is to delete IE's temporary internet files (tools/delete browsing history/temporary internet files).  Load the test script test.html.  Then click the "Click here" button and follow the path through.  The first time it works fine and SetOutput is indeed called.  If the button is clicked a second time, setOutput's never called.    You can repeat this procedure (deleting browser history and clicking "click here").

I tried deleting the ajaxObject object to see if that would help, but it did not.

All help appreciated,
Thanks
Phil


Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
-------------------------------------- test.html ----------------------------
 

 

 

 

 
	
 

 
 
 
------------------- test.php -------------------------------------------------------------------
 
Open in New Window Select All

Answer : AJAX and IE

I do this:

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
function getXmlHttp() {
	var x = 
	[
		function() { return new XMLHttpRequest(); },
		function() { return new ActiveXObject("Msxml2.XMLHTTP"); },
		function() { return new ActiveXObject("Microsoft.XMLHTTP"); }
	];
	for (var i = 0; i < x.length; i++)
	{
		try { var f = x[i]; var r = f(); if (r !== null) { return r; } }
		catch(e) { continue; }
	}
	return null;
}
Open in New Window Select All
Random Solutions  
 
programming4us programming4us