I 've find this code but I can’t manage to use it with readymag id
`
<a href="#" onmouseover="interval()">Link</a>
function interval() {
while (true) {
setInterval(showImage, 1);
}
}
function showImage() {
var x = clientX;
var y = clientY;
var image = document.getElementById("hoverimage");
image.style.left = x;
image.style.top = y;
}