Using chromes web inspector to view code is very usefull. But how do you view for example the hover code for a button? You will have to hover the mouse over the button and thus cannot use it (mouse) in the inspector. Are there any shortcodes or other ways to accomplish this in the inspector?

link|improve this question

50% accept rate
Code = javascript or css? – TheStijn Apr 26 '11 at 11:42
In this case CSS – Bo. Apr 26 '11 at 11:55
feedback

4 Answers

up vote 15 down vote accepted

This is fixed (in WebKit) as of 7/5/11: https://bugs.webkit.org/show_bug.cgi?id=63932. This feature is currently available in the Chrome dev channel (14.0.825.0 dev-m as of this writing). This shows the functionality:

enter image description here

link|improve this answer
feedback

Alternatively, you can use Event Listener Breakpoints sidebar pane in the Scripts panel and select to pause in mouseover handlers.

link|improve this answer
feedback

I'm not sure that I right understand your question but if you want to see the event handler code you can just inspect the element and look at Event Listeners sidebar pane of Elements Panel. Another way is just press pause button in Scripts Panel and just hover the element. The debugger will stop at the first instruction of the first event handler.

link|improve this answer
Could you be just a little more specific about how you do this?. A typical case would be a button I like, and want to see se how the hovering effect is accomplished in the same easy manner as ordinary inspect. – Bo. Apr 29 '11 at 10:45
feedback

It's a little annoying, but you need to right click on the element, and then, keeping your mouse over the link, use your keyboard select the 'Inspect Element' link and press enter. This should show you the css for the hover pseudo class for the selected element.

Here's hoping they make this a little easier in future builds.

link|improve this answer
Good to know, but yes it is very frustrating that the mouse needs to stay hovering over the link... even while you poke around in the Inspect Element window using only the keyboard. What a nuisance! – Chad Schultz Feb 6 at 16:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.