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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T18:32:32+00:00 2026-05-11T18:32:32+00:00

I use a XMLHttpRequest on a signup form to see if the username they

  • 0

I use a XMLHttpRequest on a signup form to see if the username they entered has been taken already. The script runs fine, but I notice that there’s some time delay when making the request – the webpage is frozen for a second, after sending the request.

Is there a way to have the request “in the background” and not cause any lag on the front end? I like Twitter’s implementation: it shows an spinning hourglass icon while it’s searching the database. How do I get something similar?

  • 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-11T18:32:33+00:00Added an answer on May 11, 2026 at 6:32 pm

    You want to use asynchronous XHR — currently you’re performing a synchronous request, so the page has to freeze until the load has complete. Asynchronous XHR calls a callbck function you provide with the load status updates.

    If memory serves you just need to do

     xhr.onreadystatechange = function() { 
         if (xhr.readyState === 4 && xhr.status === 200) loadFinished();
     }
     xhr.open(requestType, url,  true);
    

    Where true makes the request asynchronous.

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

Sidebar

Related Questions

I have a contact form i want to use Ajax for. My contact.php script
I want to use XMLHttpRequest in JavaScript to POST a form that includes a
XMLHttpRequest has 5 readyState s, and I only use 1 of them (the last
I am learning to use xmlhttprequest/AJAX. In this sample code from w3schools, I do
in order to recover data from server I use XMLHttpRequest and my code is
For the normal ajax request I use: strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest' But this don't work
use the [] symbol in the name of the form field you are submitting
I'd like to know how to use XMLHttpRequest to load the content of a
I am working on the jsp/servlet/ajax application. I use XMLHttpRequest to pass values from
Does jQuery.ajax({async: false}) still use the XMLHttpRequest object? If so, how is the request

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.