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?
feedback
|
|
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:
| |||
|
feedback
|
|
Alternatively, you can use Event Listener Breakpoints sidebar pane in the Scripts panel and select to pause in mouseover handlers. | |||
|
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. | |||
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. | |||
feedback
|
