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

  • Home
  • SEARCH
  • 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 143071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:02:14+00:00 2026-05-11T08:02:14+00:00

I want to have a javascript function such as this: function isUsernameAvailable(username) { //Code

  • 0

I want to have a javascript function such as this:

function isUsernameAvailable(username) {    //Code to do an AJAX request and return true/false if   // the username given is available or not } 

How can this be accomplished using Jquery or Xajax?

  • 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. 2026-05-11T08:02:15+00:00Added an answer on May 11, 2026 at 8:02 am

    The big win when using AJAX is that it is asynchronous. You’re asking for a synchronous function call. This can be done, but it might lock up the browser while it is waiting for the server.

    Using jquery:

    function isUsernameAvailable(username) {     var available;     $.ajax({         url: 'checkusername.php',         data: {name: username},         async: false, // this makes the ajax-call blocking         dataType: 'json',         success: function (response) {             available = response.available;         }      });      return available; } 

    Your php-code should then check the database, and return

    {available: true} 

    if the name is ok.

    That said, you should probably do this asynchronously. Like so:

    function checkUsernameAvailability(username) {     $.getJSON('checkusername.php', {name: username}, function (response) {         if (!response.available) {             alert('Sorry, but that username isn't available.');         }     }); } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to call a c# function from my javascript function. I have a
I have some jQuery/JavaScript code that I want to run only when there is
I want to write some javascript and have it call into the DOM for
I have a neat little javascript data grid and I want people to be
I have a form element that I want to address via javascript, but it
I have a long snippet of HTML I want some javascript variable to equal
I want to run javascript/Python/Ruby inside my application. I have an application that creates
In a Ruby on Rails project I need to have a JavaScript function executed
I have a JavaScript widget (a piece of embedded JS and HTML code) that's
I want to have a select-only ComboBox that provides a list of items for

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.