vote up -1 vote down star

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

Message: Unterminated string constant Line: 326 Char: 28 Code: 0 URI: http://www.netivot.biz/

flag

0% accept rate
Please elaborate further, how do you get the error? Is there a screenshot or Url you can provide? – o.k.w Nov 8 at 11:01
@qaedus, please don't post multiple questions (stackoverflow.com/questions/1695837/…) – Darin Dimitrov Nov 8 at 11:07

1 Answer

vote up 2 vote down

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.

link|flag
Ha, should be onmouseout="this.src='images/japes1.jpg';" – o.k.w Nov 8 at 11:14
thanks ! would you know to tell me why it works fine in ie, bus got stuck in chrome and safari? – qaedus Nov 8 at 11:45
No it doesn't work in IE, at least not on my IE8. – o.k.w Nov 8 at 13:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.