Skip to content

Instantly share code, notes, and snippets.

@roine
Created July 3, 2013 06:01
Show Gist options
  • Save roine/5915761 to your computer and use it in GitHub Desktop.
Save roine/5915761 to your computer and use it in GitHub Desktop.
Simply hide label if placeholder is supported
var hasPlaceholder = function(){
return 'placeholder' in document.createElement('input');
}
if(hasPlaceholder()){
$('form label').hide();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment