views:

246

answers:

1

do you know why do I get this error? on the browser?

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0) Timestamp: Sun, 8 Nov 2009 10:54:36 UTC

+3  A: 

Thankfully, the clue to the problem is in the error message. If you look at line 326 of the page source you will see the following:

onmouseout="this.src='images/japes1.jpg"

There is an unmatched single quote in the JavaScript. This is the problem.

ferdley
Ha, should be `onmouseout="this.src='images/japes1.jpg';"`
o.k.w
thanks !would you know to tell me why it works fine in ie, bus got stuck in chrome and safari?
qaedus
No it doesn't work in IE, at least not on my IE8.
o.k.w