vote up 3 vote down star
1

Hello,

I'm trying to show up a container if a input field gets the focus and - that's the actual problem - hide the container if focus is lost. Is there an opposite event for jQuery's focus?

Some example code:

<input type="text" value="" name="filter" id="filter"/>

<div id="options">some cool options</div>

<script type="text/javascript">
  $('#options').hide();

  $('#filter').focus(function() {
    $('#options').appear();
  });
</script>

And what I'd like to do is something like this:

$('#filter').focus_lost(function() {
  $('#options').hide();
});
flag

3 Answers

vote up 18 vote down check

Use blur event to call your function when element loses focus :

$('#filter').blur(function() {
  $('#options').hide();
});
link|flag
works perfectly, thanks! – Joe Sep 14 at 21:30
vote up 8 vote down

Use "blur": http://docs.jquery.com/Events/blur#fn

link|flag
Thanks to you, too! ;) – Joe Sep 14 at 21:30
vote up 0 vote down

Thank you! Simple but very helpful to me!

Dave

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.