Skip to content

Instantly share code, notes, and snippets.

@jamesarosen
Created March 10, 2010 19:57
Show Gist options
  • Save jamesarosen/328276 to your computer and use it in GitHub Desktop.
Save jamesarosen/328276 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function($) {
if (!Modernizr.input.placeholder) {
$('input[placeholder],textarea[placeholder]').each(function() {
$(this).example($(this).attr('placeholder'))
});
}
});
input.example, textarea.example {
color: #909090;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment