I have a single very wide image that I am scrolling, it works fine in firefox, but in IE the hour glass keeps flashing next to the pointer. I was wondering if there was anyway to prevent this. Here is the site
Here is my javascript to make it scroll:
Here is my javascript to make it scroll:
Code:
{
Form = document.forms.Contact.elements
document.getElementById('scroll').style.backgroundPosition= k +'px 50%'
if(k == -521)
{
rev='no'
}
if (k == 0)
{
rev='yes'
}
if (rev == 'yes')
{
k-=0.5
}
else
{
k+=0.5
}
if ((k==-21) || (k==-187) || (k==-354) || (k==-521))
{
setTimeout('Scroll()', 4000)
}
else
{
setTimeout('Scroll()', 1)
}
}