> > i have a page that refreshes every minute. i would like to cancel the
> > refresh when the mouse is over my image and refresh the page when the mouse
[quoted text clipped - 15 lines]
>
> <img onmouseover="stopMyTimer()" onmouseout="myTimer()" ...>
> sorry for being a JS newbeee
> i was using HTTP_EQUIV statement for that.
You know you can explicitly disable Meta Refresh in IE6?
> if its not too much to ask for, could you help me out with a little code
> example here ?
var myVar;
function myTimer()
{
myVar = setTimeout('changeURL()',1000)
}
function stopMyTimer()
{
clearTimeout(myVar)
}
function reloadPage(){
document.location.reload(true);
}
<img onmouseover="stopMyTimer()" onmouseout="myTimer()" ...>
> thanks anyway for your pointer
More pointers in my signature.

Signature
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Answer:It destroys the order of the conversation
Question: Why?
Answer: Top-Posting.
Question: Whats the most annoying thing on Usenet?