Created
February 21, 2017 03:02
-
-
Save crestinglight/3df3c711cfa0970cb1faf430358c89f3 to your computer and use it in GitHub Desktop.
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
| function getXY(e){ | |
| var xPosition = e.offsetX; | |
| var yPosition = e.offsetY; | |
| } | |
| var picClick = document.getElementById("WaldoLevel1"); | |
| picClick.addEventListener('click', getXY); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ASSASA