Skip to content

Instantly share code, notes, and snippets.

@leobalter
Forked from RamonPage/placeholder.js
Created June 16, 2011 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leobalter/1029823 to your computer and use it in GitHub Desktop.
Save leobalter/1029823 to your computer and use it in GitHub Desktop.
Check placeholder support.
function supports_input_placeholder() {
var input = document.createElement('input');
return 'placeholder' in input;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment