Skip to content

Instantly share code, notes, and snippets.

@RamonPage
Created June 16, 2011 17:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save RamonPage/1029779 to your computer and use it in GitHub Desktop.
Save RamonPage/1029779 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