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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:06:45+00:00 2026-06-15T08:06:45+00:00

I have a jquery search suggestions. The function is running ok. But now I

  • 0

I have a jquery search suggestions. The function is running ok. But now I want the function detect continue search.

Example : I want to search name David, I input in textbox just text : Da . And name suggestion will be show. Now if I click every where, div box suggestion will be close right ?.
and here what I want, when I back again click to textbox search, it will show div box suggestion last I input like the case : Da

Here is JS code so far :

$(document).ready(function() {
    $(".searchs").keyup(function() {
        var searchbox = $(this).val();
        var dataString = 'searchword=' + searchbox;
        if (searchbox == '') {
            $("#display").hide();
        } else {
            $.ajax({
                type: "POST",
                url: "searchs.php",
                data: dataString,
                cache: false,
                success: function(html) {
                    $("#display").html(html).show();
                }
            });
        }
        return false;
    });
    $(".searchs").blur(function() {
        $("#display").hide();
    });
});

Any idea ?

  • 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-06-15T08:06:46+00:00Added an answer on June 15, 2026 at 8:06 am

    Here is how to display the suggestion div when the user clicks in the text box, if there is text in the text box.

    $(".searchs").focus(function()
    {
      var seachbox = $(this).val(); /*note, you will need to change $(this) to the proper selector of your textbox*/
      if(seachbox != '')
      {
        $("#display").show();
      }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i'm using autocomplete from jquery... and i have this: $('#name_search').autocomplete({ source: search/name.php, open: function(){
I want to do the search using ajax jquery js, for that I have
I'm using 'rails3-jquery-autocomplete' gem, but it doesn't have multi column search, but there is
I have an input. I use the Jquery UI autocomplete to propose suggestions to
I have a PHP and jQuery script that creates search result suggestions from a
I have had a search around at other suggestions for what i want to
I have a jQuery search script that uses tabs for the user to define
I have a jQuery dropdown menu on the same page as a jQuery search
I'm using jQuery. I have website feature that does an ajax search and returns
I have jQuery load asset on my layout and I want to use CHtml::ajaxButton/ajaxSubmitButton

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.