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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T10:08:47+00:00 2026-06-18T10:08:47+00:00

My bind function: $searchInput.bind(‘blur’, function() { $searchResults.remove(); } But this shouldn’t happen if I

  • 0

My bind function:

$searchInput.bind('blur', function() {
  $searchResults.remove();
}

But this shouldn’t happen if I click on a link inside of $searchResults. Now $searchResults is removed before I can click on a link.
How should I do that?

  • 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-18T10:08:48+00:00Added an answer on June 18, 2026 at 10:08 am

    You may simply set a flag on mouse over $searchResults:

    var isOver = false;
    $searchInput.bind("blur", function(e) {
        if (!isOver) {
            $searchResults.remove();
        }
    });
    
    $searchResults.hover(function() {
        isOver = true;
    }, function() {
        isOver = false;
    });
    

    DEMO: http://jsfiddle.net/sUA4D/

    You can do the same via element data, e.g. setting $searchResults.data("isOver", true).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

$(b).bind(contextmenu,function(e){ thiselementselected = e.target $(#add).bind(click,function(e){ thiselementselected.css(font-color, red); return false }); $(#remove).bind(click,function(e){ thiselementselected.css(font-color, ); return
When I bind a function to a checkbox element like: $(#myCheckbox).click( function() { alert($(this).is(:checked));
I have several event handlers that I bind like this: $('#MyDiv').click(function () {...}); $('#SomeDiv').mouseenter(function
I want to bind a function to an event but I want to change
From: http://ejohn.org/apps/learn/#2 Function.prototype.bind = function(){ var fn = this, args = Array.prototype.slice.call(arguments), object =
I am using this bit of code successfully: $(window).bind('resize',function() { window.location.href = window.location.href; });
$('.nav').bind('click',alert(0)); and: $('.nav').bind('click',function(){alert(0)}) Why does only the second command work?
If I define the bind function like this: (>>=) :: M a -> (a
function Class() { var self=this; self.searchfield=$('#search'); self.resultbox=$('#searchresults'); self.onSearchFieldChanged=function() { console.log(F: +self.searchfield); console.log(R: +self.resultbox); }
This is the code that works properly: bonzo.aug({ bind: function (event, handler) { if

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.