Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@teabyii
Last active August 29, 2015 14:17
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 teabyii/e704867401cff905325e to your computer and use it in GitHub Desktop.
Save teabyii/e704867401cff905325e to your computer and use it in GitHub Desktop.
function _isSupportInputDate() {
var input = document.createElement('input')
input.type = 'date'
input.value = 'test' // input[type=date] can't set value as a string.
return input.value !== 'date'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment