Skip to content

Instantly share code, notes, and snippets.

@fixlr
Created September 23, 2010 14:30
Show Gist options
  • Save fixlr/593698 to your computer and use it in GitHub Desktop.
Save fixlr/593698 to your computer and use it in GitHub Desktop.
Clear & fill search input field
$(document).ready(function() {
$('#search').focus(function() {
if ($(this).val() == $(this)[0].title) {
$(this).val('');
}
});
$('#search').blur(function() {
if ($(this).val() == '') {
$(this).val($(this)[0].title);
}
});
$('#search').blur();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment