
sleuth
Enthusiast
Apr 11, 2001, 2:17 PM
Post #2 of 3
(6870 views)
|
|
Re: Not enough quote symbols???
[In reply to]
|
Can't Post
|
|
I don't think there's much else you can do as far as quotes go, I do think it's the problem though. A working example is setTimeout("RefreshPage()", 30000); and I see that you're trying to pass three values to the function checkflagniveau2(), what I'd do is move the setTimeout into another function in your head.
<head> function SetTheTimeOut(one, two, three){ setTimeout("checkflagniveau2(one, two, three)", 500); } </head> onMouseOut='MM_swapImgRestore();SetTheTimeOut("menu2a", "", "hide");' That's the basic idea I was after, Tony
|