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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T13:51:15+00:00 2026-05-31T13:51:15+00:00

I have combined itechroom checkUserName function with JohnP’s run js after user finished typing

  • 0

I have combined itechroom checkUserName function
with JohnP’s run js after user finished typing function
but it doesn’t seem to work…

$(document).ready(function(){
    //JohnyP keydowntimer
    var timer = null;
    $('#username').keydown(function(){
        clearTimeout(timer);
        timer = setTimeout(checkUserName(usercheck), 1000);
    });

    //http://www.itechroom.com
    function checkUserName(usercheck){
            $('#usercheck').html('<img src="images/ajax-loader.gif" />');
            $.post("checkuser.php", {username: usercheck} , function(data){
                if (data != '' || data != undefined || data != null){
                    $('#usercheck').html(data);
                }
            });
    }
})

I’ve tried onblur="checkUserName(this.value)" and it worked well…

  • 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-31T13:51:17+00:00Added an answer on May 31, 2026 at 1:51 pm

    It doesn’t appear that you’re declaring usercheck anywhere (or, at least, aren’t setting its value within the snippet). What seems to be missing is…

    $('#username').keydown(function () {
        var usercheck = $(this).val(); // ...this line.
        // etc.
    });
    

    But, you also have an issue with setTimeout. As it stands, checkUserName(usercheck) is being called immediately and the return value is then being passed to setTimeout.

    Since you need to pass an argument, you can wrap the call to checkUserName in a new function which will be called when the timeout expires and will in turn call checkUserName:

    setTimeout(function () {
        checkUserName(usercheck);
    }, 1000);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have combined function like this(simplified version): $('label').bind('click hover', function() { $('label').removeClass(active); $(this).addClass(active); });
What I want to do is something like this: I have enums with combined
Have anyone successfully managed to setup a combined Java/C++ project for Eclipse? What I
Scenario I have two WCF Services combined in a single App.Config file. I can't
I have a MySQL (5.0) table with 3 rows which are considered a combined
I have a set of options, some orthogonal (can be combined in any combination),
i'm using Moscow ML combined with CGI. I have a site that calculates simple
I have combined two arrays using array_merge, and now need to sort them alphabetically.
I'd like to have a combined query for two persistent classes. In HQL this
I have a simple query that relies on two full-text indexed tables, but it

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.