Why "Inspect in IDEA" doesn't work in Intellij 13

I'm using InteliJ 13 and the Live Edit for HTML works great, but why when I directly click somewhere in the Chrome browser on the HTML element and select "Inspect in IDEA" from the context menu, nothing happens?

should it open my HTML with this element in IntelliJ no? mistake?

This is the menu I'm talking about: enter image description here

+3


source to share


1 answer


It shouldn't do what you think it does.

This gives you the ability to enter debug mode for the page in IntelliJ idea.

To understand what I mean, start debugging the page in Chrome in the usual way via the RunDebug mypage.html in IDEA. Then, in chrome, click this button on the top ribbon to cancel debugging:



enter image description here

You can now resume debugging using Inspect in IDEA on the same page. That's all it can be used for, and unfortunately it doesn't offer anything as comprehensive as Inspect Element in chrome, which is probably what you'd expect.

+6


source







All Articles