Tutorials
Snippets
Debugging
Web APIs
- javascript.info
"How it's done now. From the basics to advanced topics with simple, but detailed explanations."
Best ressource for JavaScript related topics I encountered.
- Mastering The Developer Tools Console
Explanation of useful console API methods, like console.profile() for CPU profiling. - Find the triggered event listener
Image you press a key, something happens on the website and you want to know
where an event listener got triggered. You can set a breakpoint for a specific
type of event listener (keyboard, mouse, ...) in the Chrome DevTools under
source -> right sidebar -> event listener breakpoints
- CSS Tricks - JS snippets
A collection of simple and complexe JS snippets.
- window -> local storage
Why you should not use local storage for sensitive data - document -> designMode
Enteringdocument.designMode = 'on'
in the browser console will make every text on the page editable.
Visual explanation.