Skip to content

Instantly share code, notes, and snippets.

@sucreations
Last active December 12, 2015 05:48
Show Gist options
  • Save sucreations/4724153 to your computer and use it in GitHub Desktop.
Save sucreations/4724153 to your computer and use it in GitHub Desktop.
function IsInputElement() {
var i = document.createElement("input");
i.setAttribute("type", "color");
return i.type !== "text";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment