Skip to content

Instantly share code, notes, and snippets.

@sylouuu
Last active August 29, 2015 14:27
Show Gist options
  • Save sylouuu/11f9d6e424b65568a6ac to your computer and use it in GitHub Desktop.
Save sylouuu/11f9d6e424b65568a6ac to your computer and use it in GitHub Desktop.
Detect if an input type (HTML5) is supported
var isInputSupported = function (type) {
var i = document.createElement('input');
i.setAttribute('type', type);
// The browser will replace your input type with text if not supported
return i.type !== 'text';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment