tom
tom

Reputation: 14513

Chrome Debugger how to inspect elements of the dropdown menu

For the dropdown menu on one of my webpage, after I click to do Inspect element on one of menu items, the dropdown menu would collapse and disappear, and such that I couldn't check the content of the dropdown menu in the html and neither really check the corresponding css styles (and further play with the styles). Is there a way to freeze the dropdown menu after clicking to do the Inspect element operation?

Upvotes: 8

Views: 6354

Answers (1)

Ben Nieting
Ben Nieting

Reputation: 1520

After clicking on the menu, press F8 to pause script execution. That should keep your menu open so you can inspect it.

Upvotes: 3

Related Questions