HTML5 shiv for IE

html5shiv is an HTML5 JavaScript shim for IE to recognize and style the HTML5 elements workaround, invented by Sjoerd Visscher, to enable styling of HTML5 elements in versions of Internet Explorer prior to version 9, which do not allow unknown elements to be styled without JavaScript.

<!DOCTYPE html> <html lang="en">     <head>         <!--[if IE]>             <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>         <![endif]-->     </head>     <body>         <!-- Content here -->     </body> </html>

shanidkv's picture