What are some good solutions for making my HTML 5 pages compatible with IE (at least IE 7 & 8)?
Is there an industry standard that I can use that will make IE recognize things like <article>
and <nav>
?
What are some good solutions for making my HTML 5 pages compatible with IE (at least IE 7 & 8)?
Is there an industry standard that I can use that will make IE recognize things like <article>
and <nav>
?
Sure... don't use features the browser doesn't support. It is honestly that simple.
You are looking for a silver bullet, but one does not exist here. There are alternatives to just about everything. Sure, they aren't pretty, but they are out there.
Yeah, you can run the html5shiv if you want, which is what you seem to be referring to. It'll allow IE to parse the tags initially. But that will still leave you with the same problems if you want to use innerHTML
(or framework code based on it). There's the innershiv, but it's not wonderfully efficient and it won't work for all top-level elements.
What do you want to achieve by using the semantic-but-behaviour-free elements like <article>
? You will be taking on extra browser problems for little practical benefit. To be honest, I really wouldn't bother, today. It's something for the future.