Hi, I'm having a problem with getting this image scroller to work on Mac IE (works fine in windows).
----this is in the head tag-------
-------------------------
and the following is an image of an arrow
Thanks
----this is in the head tag-------
Code:
<SCRIPT language="JavaScript">
var iTimer;
function timeIt2()
{
iTimer = setInterval("scrollIt2()",50);
}
function timeIt()
{
iTimer = setInterval("scrollIt()", 50);
}
function stopIt()
{
clearTimeout(iTimer)
window.document.recalc(true)
}
function scrollIt2()
{Layer2.doScroll("right");
}
function scrollIt()
{
Layer2.doScroll("left");
}
</SCRIPT>
and the following is an image of an arrow
Code:
<td><img src="assets/layout/index_r10_c4.gif" alt="scroll right" name="index_r10_c4" width="22" height="42" onmouseover="timeIt(1)" onmouseout="stopIt()"></td>
Thanks