Created
April 3, 2017 14:53
-
-
Save willwright82/f0bd0403988d57c755e965588986c576 to your computer and use it in GitHub Desktop.
Some neat things you can do with Chrome DevTools
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
| // Access the currently selected element via: | |
| console.log($0); | |
| // See fired events with: | |
| monitorEvents(window,'click'); | |
| // Kick off the debugger the next time the given function is called: | |
| debug(myFunction); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment