Created
March 16, 2009 03:22
-
-
Save cheeaun/79686 to your computer and use it in GitHub Desktop.
HTML5 elements NOW!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* HTML5 elements for IE | |
* more reference from: http://remysharp.com/2009/01/07/html5-enabling-script/ | |
*/ | |
(function(){ | |
var e = 'abbr article aside audio bb datagrid datalist details dialog eventsource figure footer header mark menu meter nav output progress section time video'.split(' '); | |
var i = e.length; | |
while (i--) document.createElement(e[i]); | |
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
article, aside, dialog, figure, footer, header, section { display: block; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment