Skip to content

Instantly share code, notes, and snippets.

@andrastudio
Created April 10, 2013 00:21
Show Gist options
  • Save andrastudio/5350646 to your computer and use it in GitHub Desktop.
Save andrastudio/5350646 to your computer and use it in GitHub Desktop.
$('#searchform input#s').val('Search ...');
$('#searchform input#s').blur(function(){
if ($('#searchform input#s').val() == ''){
$('#searchform input#s').val('Search ...');
}
});
$('#searchform input#s').focus(function(){
if ($('#searchform input#s').val() == 'Search ...'){
$('#searchform input#s').val('');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment