Inspect element without right clicking in Chrome

11,666

Solution 1

Try pressing ctrl+shift+c. This will open the dev tools in element selection mode, allowing you to left-click on elements to jump straight to them in the elements view.

Solution 2

You can press Ctrl+Shift+C to enter a mode where you can mouse over elements and it will inspect it. With your mouse over the element you want to inspect, just press Ctrl+Shift+C again and your element will be selected in the developer panel.

Solution 3

You can open the dev tools on a different windows and refresh your page or use firebug.

or use Firefox

Share:
11,666
Vincent Tang
Author by

Vincent Tang

I mostly develop with NodeJS / Javascript for full-stack applications, but I dabble in Python . I am a confident developer willing to learn new things as they come. Please check out my GitHub or go to my blog to learn more about projects I have done. Below are a few of my best answers and questions, not based on votes, but rather brevity and helpfulness. As well as projects I've made that solve real-world applications. I contribute to a number of communities besides StackOverflow, listed below QUESTIONS Javascript: Split a string into array matching parameters Javascript access json property javascript how to get json data with api call to redirected url ANSWERS Excel - Seperating / Showing Deleted Duplicated Data Excel VBA Grab Ancestor value from Relational Data Creating URL Paginator with Excel VBA PROJECTS ExcelVBA - Bulk Downloader & Renamer Script used by 300+ database-developers for ETL and local backup COMMUNITIES Alternativeto.net and Software Recommendations Freecodecamp forums solutions SuperUser Forums CONTACT I live on US East Coast. You can reach me here :::::: vincentntang (at) gmail If you email me please write bananas in the subject line.

Updated on June 18, 2022

Comments

  • Vincent Tang
    Vincent Tang almost 2 years

    When I inspect html/css on a website, I usually open the chrome developers panel ctrl+shift+I → right click context menu "inspect" so I can highlight that class

    however, sometimes I'm trying to inspect an element that is sensitive to "right clicks" events , e.g. if I right click an item on the website functionality changes

    Example: enter image description here

    so I can't inspect an element

    Normally I inspect elements like this (e.g. stackoverflow)

    enter image description here

    How do you inspect an element without using the right click button?

    Normally I would have to just dig through the chrome developer's panel elements and just go one by one to find said element, which takes a really long time

    I must be missing something important here about chrome's inspect element tools. Could someone enlighten me here a better workflow / maybe chrome extension tools?