Skip to content

Instantly share code, notes, and snippets.

@fnando
Created December 1, 2010 22:32
Show Gist options
  • Save fnando/724362 to your computer and use it in GitHub Desktop.
Save fnando/724362 to your computer and use it in GitHub Desktop.
Instantiate HTML5 tags, so we can style them on IE
(function(){
var tags = "abbr|article|aside|audio|canvas|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video".split("|");
for (var i = 0, tag; tag = tags[i]; i++) { document.createElement(tag); }
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment