Skip to content

Instantly share code, notes, and snippets.

@thecodedrift
Created August 17, 2012 22:25
Show Gist options
  • Select an option

  • Save thecodedrift/3383252 to your computer and use it in GitHub Desktop.

Select an option

Save thecodedrift/3383252 to your computer and use it in GitHub Desktop.
document.createElement, Checkboxes, and IE
var cb = document.createElement("input");
cb.type = "checkbox";
cb.checked = true;
// IE requires a checkbox to be made differently
try {
var cb = document.createElement("<input type=\"checkbox\" checked>");
}
catch (e) {
var cb = document.createElement("input");
cb.type = "checkbox";
cb.checked = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment