AJAX

B

brunascle

Is the implementation for IE 6 different from Firefox?

--
iTech Consulting Services Limited
Expert of ePOS solutions
Website:http://www.itech.com.hk(IE only)
Tel: (852)2325 3883 Fax: (852)2325 8288

yeah, when you create the xmlhttprequest object it is. in most
browsers the XMLHttpRequest is part of the window element, so you'd
do:
var xmlhttp = new window.XMLHttpRequest();

(or just ... new XMLHttpRequest()...)

in IE it's either:
new ActiveXObject("Msxml2.XMLHTTP")
or:
new ActiveXObject("Microsoft.XMLHTTP")

for cross-browser support, you'll have to support all 3 methods. after
that, though, the implementations all seem to work the same.
 
B

blaine

Is the implementation for IE 6 different from Firefox?

--
iTech Consulting Services Limited
Expert of ePOS solutions
Website:http://www.itech.com.hk(IE only)
Tel: (852)2325 3883 Fax: (852)2325 8288

Yes. Do some searches and you will find that to create a request
object in IE is different.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,164
Messages
2,570,901
Members
47,439
Latest member
elif2sghost

Latest Threads

Top