Web Dev Tools

To follow along with this example navigate to:

slc-js-learners.github.io / web-dev-tools / index.html

or git / zip:

github.com / SLC-JS-Learners / web-dev-tools

The demo will be done with the following browsers. Ensure you have at least one of them. Both would be better. ;-)

Accessing

We'll start by accessing your last toolview or the inspector

Options & Navigating

HTML & CSS

JavaScript

Some examples to play with:
Button:
Color Pickers:
  • Console
    • messages stack
    • Split-console shortcut key - esc
  • Scratchpad then cmd-r (Firefox) /
    Sources > Snippets then cmd-enter(Chrome)
  • Debugger (Firefox) / Sources (Chrome):
    • in line - debugger
    • in Web Dev Tools - breakpoints
    • in Web Dev Tools - conditional breakpoints
  • Element awesomeness!
    • inspect($0)
    • $0
    • copy(obj)
    • "and many more" via help (Firefox-only)
  • Event awesomeness!
    Debugger > Events (Firefox) /
    Sources > Event Listener Breakpoints (Chrome)

Learn more

Bonus

  • DuckDuckGo !bangs
    • !mdn: Mozilla Developer Network (MDN)
    • !js: MDN JavaScript specific

Network, Performance, Memory, & Storage/Resources, oh my ...