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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T03:21:39+00:00 2026-06-10T03:21:39+00:00

I have an code that the function is autosuggestion. This code works good. And

  • 0

I have an code that the function is autosuggestion. This code works good. And I just want to ask You about how to close the box after I input text in the textbox. In my code when I try to click anywhere, it didn’t close the box. So what I want to do is when I click anywhere so the box must be close.

Here is my jQuery:

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

HTML:

<div class="search">
<form method="get" action="search.php" autocomplete="off">
<input class="text_search" type="text" name="q" id="q" value="Search people" onfocus="if (this.value == 'Search people') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search people';}">
</form>
</div>

<div id="display">
</div>
  • 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-10T03:21:41+00:00Added an answer on June 10, 2026 at 3:21 am

    Just add a event handler on the document body and close the box if it’s open. Put that at the end of your body :

    <script>
        $(window).ready(function(){
            $('body').click(function(){
                $("#display").hide();
            });
        });
    </script>
    

    EDIT :

    If you want also to have the search launched again when you click the search box, change your script to this :

    $(document).ready(function() {
        var launchSearch = function() {
            var searchbox = $(this).val();
            var dataString = 'searchword=' + searchbox;
            if (searchbox == '') {} else {
                $.ajax({
                    type: "POST",
                    url: "search1.php",
                    data: dataString,
                    cache: false,
                    success: function(html) {
                        $("#display").html(html).show();
                    }
                });
            }
            return false;
        };
        $(".text_search").keyup(launchSearch).click(launchSearch);
        $('body').click(function(){
            $("#display").hide();
        });
    });​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have code that looks like this: var baseClass = function() { // CODE
I have some code that looks like this: var MyObject = function () {
I have this code snippet inside a function that checks if an object exists
I have seen Javascript code that uses parenthesis immediately after a function's closing curly
Inside my .aspx I have some JSON code that looks like this: function someFunctionName()
I have code that looks like this: function processRequest() { // get the verb
I have code that looks like this.... function Finder(id) { this.id = id; this.input
I have code that looks like this: function foobar(array& $objects, $con = null) {
I have code that boils down to this: //Just a templated array class ..
I have this code that relies on SFINAE and default template arguments. It works

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.