Chrome Web Developer Tools

  • Post author:
  • Post category:General
  • Post comments:0 Comments
  • Post last modified:December 12, 2024
  • Reading time:2 mins read

Table of Contents

Keyboard Shortcuts

To open the Chrome Developer Tools, Console Tab, you can use the following shortcodes:

  • Windows: ctrl + shift + j
  • Mac: cmd + option + i

To open the Chrome Developer Tools, Elements Tab, you can use the following shortcodes:

  • Windows: ctrl + shift + c
  • Mac: cmd + option + c

To toggle device toolbar use the following shortcodes:

  • Windows: ctrl + shift + m
  • Mac: cmd + shift + m
				
					copy(xxx)

document.querySelector('ul')
$('ul')

inspect($_)

$$('ul') // Select all ul in the code
				
			

Leave a Reply