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 7054719
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:39:40+00:00 2026-05-28T03:39:40+00:00

I’m using XMLHttpRequest in JavaScript. However, it gives me an error, and I don’t

  • 0

I’m using XMLHttpRequest in JavaScript. However, it gives me an error, and I don’t know what my problem is.
I have to parse an XML file and assign its contents to the webpage – here’s my code:

<script = "text/javascript">

    window.onload = onPageLoad();
    var questionNum = 0;

    function onPageLoad(questionNum) {
        var xmlhttp = new XMLHttpRequest();
        xmlhttp.open("GET","quiz.xml");
        try {
            xmlhttp.send(null); // Here a xmlhttprequestexception number 101 is thrown 
        } catch(err) {
            document.getElementById("body").innerHTML += "\nXMLHttprequest error: " + err.description; // This prints "XMLHttprequest error: undefined" in the body.
        }
        xmlDoc = xmlhttp.responseXML;
        parser = new DOMParser(); // This code is untested as it does not run this far.
    }
</script>

My XML file is inside the same directory.

<question>
    <query>what is 2+2?</query>
    <option>4</option>
    <option>5</option>
    <option>3</option>
    <answer>4</answer>
</question>

Just for reference, I typically program in C# or Java, and I’m running my website on Google Chrome.

  • 1 1 Answer
  • 0 Views
  • 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-28T03:39:41+00:00Added an answer on May 28, 2026 at 3:39 am

    So there might be a few things wrong here.

    First start by reading how to use XMLHttpRequest.open() because there’s a third optional parameter for specifying whether to make an asynchronous request, defaulting to true. That means you’re making an asynchronous request and need to specify a callback function before you do the send(). Here’s an example from MDN:

    var oXHR = new XMLHttpRequest();
    
    oXHR.open("GET", "http://www.mozilla.org/", true);
    
    oXHR.onreadystatechange = function (oEvent) {
        if (oXHR.readyState === 4) {
            if (oXHR.status === 200) {
              console.log(oXHR.responseText)
            } else {
               console.log("Error", oXHR.statusText);
            }
        }
    };
    
    oXHR.send(null);
    

    Second, since you’re getting a 101 error, you might use the wrong URL. So make sure that the URL you’re making the request with is correct. Also, make sure that your server is capable of serving your quiz.xml file.

    You’ll probably have to debug by simplifying/narrowing down where the problem is. So I’d start by making an easy synchronous request so you don’t have to worry about the callback function. So here’s another example from MDN for making a synchronous request:

    var request = new XMLHttpRequest();
    request.open('GET', 'file:///home/user/file.json', false); 
    request.send(null);
    
    if (request.status == 0)
        console.log(request.responseText);
    

    Also, if you’re just starting out with Javascript, you could refer to MDN for Javascript API documentation/examples/tutorials.

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

Sidebar

Related Questions

We are using XSLT to translate a RIXML file to XML. Our RIXML contains
I have just tried to save a simple *.rtf file with some websites and
I have a French site that I want to parse, but am running into
i want to parse a xhtml file and display in UITableView. what is the
I have thousands of HTML files to process using Groovy/Java and I need to
I have a reasonable size flat file database of text documents mostly saved in
I'm parsing an XML file, the creators of it stuck in a bunch social
I am reading a book about Javascript and jQuery and using one of the
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm new to using the Perl treebuilder module for HTML parsing and can't figure

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.