rwb
rwb

Reputation: 4478

IE9.js causing script error in IE6?

Ive been tearing my hair out over this one. Im using Dean Edwards' IE9.js to make IE6 less of a nightmare. This is in my <head>

<!--[if lt IE 7]>
    <link rel="stylesheet" href="/css/ie6.css" type="text/css" media="screen">
<![endif]-->

<!--[if lt IE 9]>
    <script type="text/javascript" src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->

Then, i open an IE6 instance in IETester and get:

An error has occured on a script in this page: Line: 7 Char: 28214 Error: Invalid Argument

Removing the IE9.JS removes this error (but breaks a lot more on the site). Any ideas? The site is here: ryanballard.tk

Thank you

Upvotes: 0

Views: 1409

Answers (1)

Krazer
Krazer

Reputation: 481

Apparently, it's an issue with font: inherit. See the workaround here.

Upvotes: 2

Related Questions