1) If I'm already using Modernizr then even will I need HTML5 Shiv to enable HTML5 tag supports for IE.

2) and is HTML5 Shiv only for IE or for all browser who don't have native HTML 5 support. like older version of Firefox, Safari, Chrome etc.

link|improve this question

64% accept rate
feedback

1 Answer

up vote 8 down vote accepted

1) If I'm already using Modernizer then even will I need HTML5 Shiv to enable HTML5 tag supports for IE.

You don't need to separately include html5shiv, because Modernizr includes it:

As of Modernizr 1.5, this script is identical to what is used in the popular html5shim/html5shiv library.

http://www.modernizr.com/docs/#html5inie


2) and is HTML5 Shiv only for IE or for all browser who don't have native HTML 5 support. like older version of Firefox, Safari, Chrome etc.

It's only for Internet Explorer.

Older versions of other browsers don't need it: http://caniuse.com/html5semantic

And the recommended snippet to include it is:

<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

Which will only ever run for IE less than 9.

link|improve this answer
Great and quick answer as i expected. So only IE was the show stopper. – Jitendra Vyas Jul 30 '11 at 12:17
You mean when I download custom Modernizer I should keep marked the HTML5 Shim/IEPP checkbox on this page modernizr.com/download – Jitendra Vyas Jul 30 '11 at 12:30
Yes, you must keep that ticked if you want html5shiv to be included. – thirtydot Jul 30 '11 at 12:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.