Mouse Cursor Coordinates Over Image:
Not Working
thanks to the suggestions I received here, I cleaned up my code and I'm now using pure jQuery. I made slight edits to a script I found here and I've got this: window.onload = funct
Solution 1:
change:
$( tooltip ).text( 'x = ' + x + '<br/> y = ' + y ).css({
to:
$( tooltip ).html( 'x = ' + x + '<br/> y = ' + y ).css({
Post a Comment for "Mouse Cursor Coordinates Over Image:
Not Working"