Open GoogleCodeExporter opened 8 years ago
I've got the same problemand i didn't find the answer.
Original comment by theod...@gmail.com
on 9 Feb 2011 at 10:07
I am also seeing this problem. Specifically, IE8 8.0.6001.18702 and ONLY when
in "Compatibility View" mode.
Original comment by Doss...@gmail.com
on 1 Mar 2011 at 9:38
> ONLY when in "Compatibility View" mode.
Hmm.
OP: would you mind throwing a test page somewhere?
Original comment by kit.cof...@gmail.com
on 4 Mar 2011 at 6:07
I'm going to try and create a minimal reproduction of this bug. Thanks for
asking.
Original comment by Doss...@gmail.com
on 4 Mar 2011 at 7:59
Woo! Great success, very nice ... I have the *minimal* reproducible test case
that demonstrates this bug.
http://panoptic.com/ie7-js-300/
Hit that URL with IE8 with "Compatibility View" turned on, and you'll see the
JS error.
Original comment by Doss...@gmail.com
on 4 Mar 2011 at 8:13
I'm also having the same issue, linking directly to the hosted JS IE8/IE9:
<!--[if lt IE 9]>
<script
src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<script
src="http://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE8.js"></script>
<![endif]-->
The JS error is: Line 7, Char 28214, Invalid argument
This occurs in IETester "New IE6" and "New IE7". A fix or solution would be
greatly appreciated.
Original comment by michael....@gmail.com
on 21 Mar 2011 at 8:31
I am getting the same issue. Any thoughts on how to fix it?
Original comment by twofivet...@gmail.com
on 13 Apr 2011 at 9:17
I was getting the same JS error in IE7 and found the cause to be font: inherit;
in my reset css. This is the same as Issue #307
(http://code.google.com/p/ie7-js/issues/detail?id=307). They provided a temp
solution that worked in my case so might work for others.
Original comment by twofivet...@gmail.com
on 14 Apr 2011 at 2:38
Nice, yeah, looks like #307 is a dupe of or at least closely related to this
issue.
Original comment by Doss...@gmail.com
on 14 Apr 2011 at 3:12
Thanks for posting that.
Original comment by michael....@gmail.com
on 14 Apr 2011 at 5:34
I am having a similar problem, but can't seem to apply any of the fixes above.
I am a novice HTML coder. The applicable code is as follows:
<HTML>
<HEAD>
<TITLE>Fred Ray Nabors- Personal Home Page</TITLE>
<script language="javascript1.2" type="text/javascript">
function openjukebox (URL, WindowName, Features)
{
window.open(URL, WindowName, Features);
}
</script>
</HEAD>
<BODY BACKGROUND="buffwall.gif" body text="#000000" LINK="ff7100"
vlink="ff7100" alink="ff7100">
<a href="javascript:openjukebox('song1danceswithwolves.htm', 'Downhill Run
Acres Jukebox', 'toolbar=0, location=0, directories=0, status=0, menubar=0,
scrollbars=1, resizable=0, copyhistory=0, left=0, top=0, screenX=0, screenY=0,
width=410, height=300')">Start the Automated Jukebox</a>
<CENTER>
I am getting the "Invalid Argument" error at Line 7, Char 1. Code 0
I have tried this in both IE7 and IE8, although it seems to work in Google
Chrome.
Any help would be appreciated!!!
Ron
Original comment by abusines...@rondougherty.com
on 1 May 2011 at 3:20
I'm also getting the invalid argument error in IE7 when using IE9.js. After
tracing the problem, I found out that IE7 doesn't like g.runtimeStyle['font'].
Below is the snippet of code I extracted from IE9.js where the error is
occurring.
function (g, f) {
if (g.parentElement) {
var d = f.match(dd);
for (var c = 0; c < d.length; c++) {
var a = d[c].replace(de, "");
if (g.currentStyle["ie7-" + a] === "inherit") {
a = a.replace(df, dg);
alert(a); //alerts 'font'
g.runtimeStyle[a] = g.parentElement.currentStyle[a]
}
}
}
}
Original comment by glen...@gmail.com
on 24 Aug 2011 at 5:56
I have the same issue, and noticed the same thing, any update on this?
Original comment by wade.cor...@gmail.com
on 8 Feb 2012 at 6:35
[deleted comment]
change --> font: inherit;
to -->
font-weight: inherit;
font-style: inherit;
font-family: inherit;
It has been fixed in Issue #307 .
Original comment by thanhthi...@gmail.com
on 7 Jul 2012 at 7:02
Original issue reported on code.google.com by
oys...@gmail.com
on 8 Feb 2011 at 12:24