Jaiesh_bhai
Jaiesh_bhai

Reputation: 1814

Cross Browser Instance in Chrome

I was reading the following guide: https://developer.mozilla.org/en-US/docs/AJAX/Getting_Started

It's not mentioned if this cross browser instance (object) of XMLHttpRequest or ActiveXObject is compatible with the Google Chrome browser? If it isn't, what should I be using to include the Google Chrome browser?

Upvotes: 2

Views: 29

Answers (1)

marekful
marekful

Reputation: 15351

ActiveXObject is for MS IE, XMLHttpRequest is for the rest (WebKit, Gecko based browsers).

As for supporting XMLHttpRequest, Firefox and Chrome are the same.

Upvotes: 2

Related Questions