Skip to content

Instantly share code, notes, and snippets.

@samstarling
Created September 19, 2012 13:11
Show Gist options
  • Save samstarling/3749581 to your computer and use it in GitHub Desktop.
Save samstarling/3749581 to your computer and use it in GitHub Desktop.
Expand/Shrink Form Input
$(document).ready(function(){
$("#search").bind({
focus: function() {
$(this).animate({ width:200 }, 300);
},
blur: function() {
$(this).animate({ width:90 }, 300);
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment