Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to create a search bar that will expand once clicked. When the user clicks elsewhere, the search bar will return to its normal state.

I haven't managed to do this, but have made it expand on click. Any help would be great

$(document).ready(function(){
    $("#search").click(function(){
        $(this).animate({ "width": "200px"},400);
    }); 
});
share|improve this question
Try something more... – Neal Jan 16 at 15:15

3 Answers

up vote 3 down vote accepted
$("#search").on('click', function(){
    $(this).animate({ "width": "200px"},400);
}); 

$(document).on('click', ':not(#search)', function(e){ 
    //when you click somewhere that is **not** search
    if(e.target.id !== 'search') {
        $("#search").animate({ "width": "50px"},400);
    }
}); 

Demo: http://jsfiddle.net/maniator/2W2z4/

share|improve this answer
$('body').click(function(e){
       if( e.target.id == 'search' )
          {      
              $(e.target).animate({ "width": "200px"},400);
          }
       else
          { 
             $('#search').animate({ "width": "100px"},400);
          }

 });
share|improve this answer
Y U NOT USE e.target instead of "#search" (in the 1st part of the if statement)? – Neal Jan 16 at 15:22
Because when you target outside search it animates that target, but i guess i could change the first animate to e.target – Anton Jan 16 at 15:25
1  
Hence I said "1st part of the if statement" :-P @anton – Neal Jan 16 at 15:25
haha ^^ there fixed, tyty – Anton Jan 16 at 15:27
I think I am going to fix mine and "borrow" your e.target.id idea. I hope you don't mind ^_^ – Neal Jan 16 at 15:28
show 2 more comments

Why bind it to the body and always have it attempting to animate the search box even when the user is not interacting with it?

$(document).ready(function () {
    $("#search").focus(function () {
        $(this).animate({ "width": "600px" }, 400);
    }).focusout(function () {
        $(this).animate({ "width": "400px" }, 400);
    });
});

jsFiddle: http://jsfiddle.net/2W2z4/3/

share|improve this answer
hehe or even using focus and blur might do it! +1 – Neal Jan 16 at 15:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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