What I meant was that each of your DIV content containers (#description, #video, etc) should carry a class="tabcontent" CSS class. But actually, that turns out not to be the issue in IE in your case. The issue is that the ID for your first content container- "description" turns out to be a reserved word in IE apparently. Change it to something else in the two places where it is used:
Code:
<li><a rel="mydescription" href="#" class="selected" >Description</a></li>
and:
Code:
<div id="mydescription" class="tabcontent">
That should do it.
Bookmarks