HTML5shiv vs Dean Edwards IE7-js vs Modernizr – which to choose?

No, they’re not the same at all; they do completely different things.

  • html5shiv allows you to use the new HTML5 tags in versions of IE that don’t understand them. Without it, IE will choke on these tags, so you need this if you intend to use the tags. Don’t expect it to make the tags actually do anything in IE though! It just stop the browser complaining about them.

  • modernizr sets a bunch of classes in your HTML, depending on the available features, which you can use to change your layout according to what the browser supports. It also allows you to use the new HTML5 tags in IE, like html5shiv.

  • ie7.js (as well as ie8.js and ie9.js) uses Javascript to retro-fit some missing functionality to IE.

As far as I’m aware there’s no cross-over between them (aside from html5shiv/modernizr), so you can use any combination of them, depending on what features you need to implement.

While I’m on the subject, and since you’re asking about tools to make IE more compatible with other browsers, I suggest you also look into CSS3Pie, which will make your life much happier if you plan to use rounded corners on your site (plus one or two other features).

This also has no cross-over with the other three products you mentioned, though they do all aim to make old versions of IE slightly easier to work with.

Leave a Comment