Reputation: 1814
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
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