Skip to content

Instantly share code, notes, and snippets.

@rylanb
Created April 20, 2011 15:30
Show Gist options
  • Save rylanb/931656 to your computer and use it in GitHub Desktop.
Save rylanb/931656 to your computer and use it in GitHub Desktop.
Placeholder Plugin Example
<!-- Check for Placeholder support natively in the browser with
Modernizr - modernizr.com or your own check -->
<script type="text/javascript">
if (!Modernizr.input.placeholder){
$('input, textarea').placehold_me();
}
</script>
<!-- example input -->
<input type="text" placeholder="Address" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment