Dynadot โ€” .com Registration $8.99

[Resolved] Mouseover to keep loading the image

Spacemail by SpaceshipSpacemail by Spaceship
Watch
Impact
49
Mouseover to keep loading the image

From the script below, it allows user to reload the image once when mouse over.
Code:
<img src="yourfile.jpg?o=1" onMouseOver="this.src+=1" alt="" />

Anyway to keep loading the same image url until onMouseOut?

Really appreciate your time & advice. Thanks!!!

Updates:
With thanks to DylanButler for this working code. :)

Code:
<script type="text/javascript">
var interval;
var amount = 1200;
function refreshImage() {
document.getElementById('refresher').src += 1;
}
function startInterval() {
interval = setInterval("refreshImage()", amount);
}
function cancelRefresh() {
clearInterval(interval);
}
</script>
<img id="refresher" src="84180.jpg?o=1" onmouseover="startInterval()" onmouseout="cancelRefresh()" alt="" />
 
Last edited:
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
GoDaddyGoDaddy
Dynadot โ€” .com Registration $8.99Dynadot โ€” .com Registration $8.99
Unstoppable Domains
Domain Recover
NameMaxi - Your Domain Has Buyers
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back