Created
October 25, 2012 11:35
-
-
Save etch-snippets/3952112 to your computer and use it in GitHub Desktop.
[jQuery] Track mouse movement in an iframe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('iframe').contents().mousemove( function(e) { | |
| console.log( e.clientX, e.clientY ); | |
| }); |
Thank you, this is very helpful
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not working