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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T04:18:26+00:00 2026-05-29T04:18:26+00:00

I have a search similar to Google’s that dropsdown with results while the user

  • 0

I have a search similar to Google’s that dropsdown with results while the user is typing. Ideally I would like for the user to click on one of these results and the value goes into the searchbox. However, when i click on the results, nothing happens.

HTML:

<input type='text' id='topicInput' name='topic' autocomplete='off' />
<div id='tagResult'></div>  //this is the dropdown

JQUERY:

$('#topicInput').keyup(function(){

        var topic = $(this).val();
        if (topic==''){
            $('#tagResult').css("display" , "none");
        }
        else{
            //$('div').click(function(){
                //$('#tagResult').css("display" , "none");

            //});
            $('#tagResult').css("display" , "block");

                $.post('../topic.php' , {topic: topic} , function(response){

                $('#tagResult').html(response);     
                });
            }
    });
     //the above code is working properly

$('.topicResult').click(function(){
    alert(1);   //this is just a test, but it never shows up
});

So, when i click on a .topicResult nothing happens. An alert should show up. I have verified that topic.php does in fact return divs with the topicResult class.

  • 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-29T04:18:27+00:00Added an answer on May 29, 2026 at 4:18 am

    You’re binding your click event and then adding elements to the page after the listener is bound. It won’t fire.

    Two options

    Option 1, use a listener that can bind to elements after the page is rendered

    Either change the click event for .topicResult to use “.on()” for jQuery 1.7+ or use “.live() or .delegate()” for previous versions

     $(document).on('click','.topicResult',function(){
          alert('1');
     )};
    

    Option 2, move your click bind so it is bound after you add the elements

     $('#topicInput').keyup(function(){ 
    
        var topic = $(this).val(); 
        if (topic==''){ 
            $('#tagResult').css("display" , "none"); 
        } 
        else{ 
            //$('div').click(function(){ 
                //$('#tagResult').css("display" , "none"); 
    
            //}); 
            $('#tagResult').css("display" , "block"); 
    
                $.post('../topic.php' , {topic: topic} , function(response){ 
    
                $('#tagResult').html(response);
                    $('.topicResult').click(function(){ 
                          alert(1);   //this is just a test, but it never shows up 
                     }); 
    
                }); 
            } 
    }); 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a similar code snippet like this class Search { public function search($for,
I am testing a page similar to Google search where you would enter the
I have a script which displays search results after typing something in the input
I'm trying to program a simple search in google via C# that would run
I have search strings, similar to the one bellow: energy food olympics 2010 Terrorism
How can i have slide downeffect? The effect will be similar with search function
the div on website below that have search at the bottom and it always
I have an ASP.NET page that contains two div's. Both have search fields and
I have a search page that contains a textbox for the search and a
I have a search box that works great in WinForms, but is giving me

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.