Skip to content

Instantly share code, notes, and snippets.

@onozaty
Last active October 13, 2015 04:07
Show Gist options
  • Save onozaty/4136459 to your computer and use it in GitHub Desktop.
Save onozaty/4136459 to your computer and use it in GitHub Desktop.
Script error on IE at input type change.
var input = document.createElement('input');
input.type; // -> "text"
input.type = 'button'; // OK
document.body.appendChild(input);
input.type = 'text'; // Error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment