Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 704081
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:54:06+00:00 2026-05-14T03:54:06+00:00

In internet explorer we can create the object of ActiveXObject like follows xmlDoc=new ActiveXObject(Microsoft.XMLDOM);

  • 0

In internet explorer we can create the object of ActiveXObject like follows

xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async="false";
xmlDoc.load("note_error.xml");

It is possible to use the xmlDoc.load(“note_error.xml”); for the object of XMLHttpRequest in other browsers.If no,any other substitute for this method when we use XMLHttpRequest.Please help…am using firefox as my browser

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T03:54:07+00:00Added an answer on May 14, 2026 at 3:54 am
    xmlDoc.async="false";
    

    That’s not doing what you think. async is a boolean property. When you assign the string "false" to it, you’re getting the value true, because all non-empty strings are truthy.

    It is possible to use the xmlDoc.load(“note_error.xml”); for the object of XMLHttpRequest in other browsers.

    Yes, in fact that’s what you should be doing in IE too. There is no reason to use XMLDOM to fetch an XML Document; XMLHttpRequest can do that fine and it’s much more widely supported.

    var xhr= window.XMLHttpRequest? new XMLHttpRequest() : new ActiveXObject('MSXML2.XMLHttp');
    xhr.async= false;
    xhr.open('GET', 'note_error.xml');
    xhr.send();
    var doc= xhr.responseXML;
    

    If you do need an XMLDOM-like object in other browsers, it’s called new DOMParser, but it’s not as widely-supported as XMLHttpRequest.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can I create something like an Internet Explorer accelerator using JavaScript on the client-side?
In Microsoft Internet Explorer we can use Msxml2.DOMDocument.6.0 activeX component to do xslt based
I would like to start a new VC++ project that can create a toolbar
As I'm sure you all know, Internet Explorer can handle simple gradients. Here is
A project I am working on is using pushState, but since Internet Explorer can't
HI, How can i change internet explorer security settings by code. i want to
I have 5 addons/extensions for Firefox, Chrome, Internet Explorer(IE), Opera, and Safari. How can
internet-explorer aborts the EOT file loading progress sometimes, so the font does not load
Internet Explorer does not like my Jquery selector. Not sure if it's my weak
I'm currently researching what the best way to create an extension for Internet Explorer

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.