Skip to content

Instantly share code, notes, and snippets.

@jrpz
Created December 17, 2010 16:17
Show Gist options
  • Save jrpz/745196 to your computer and use it in GitHub Desktop.
Save jrpz/745196 to your computer and use it in GitHub Desktop.
jQuery daisy chain
$('input[type="text"]').css({
'font-weight' : 'bold',
'color' : '#999',
'text-align' : 'center'
}).click(function(){
$(this).val('');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment