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);
});
});