Skip to content

Instantly share code, notes, and snippets.

@evantishuk
Created February 1, 2012 21:57
Show Gist options
  • Save evantishuk/1719732 to your computer and use it in GitHub Desktop.
Save evantishuk/1719732 to your computer and use it in GitHub Desktop.
$("select")
.focus(function(){
$(this)
.data("origWidth", $(this).css("width"))
.css("width", "auto");
})
.blur(function(){
$(this)
.css("width", $(this).data("origWidth"));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment