I am evaluation InteliJ idea 12 (comparing with Visual Studio 2012 + Resharper 7.1)
But I can't seem to make this simple HTML page this work in IDEA 12 when I press Alt-F2 and choose any browser.
--> Jquery does not seem to be executed.
In VS 2012 it just works.
<!DOCTYPE html><html><head> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"> </script> <script> $(document).ready(function () { $(p).click(function () { $(this).hide(); }); }); </script></head><body><p>If you click on me, I will disappear.</p><p>Click me away!</p><p>Click me too!</p></body></html>
I am not interested in a IDA12 vs VS2012 discussion, because I want to use both depending on what I need for what project.
The intention is to educate myself on the widest range of languages/tools and IDEA 12 would be a perfect fit.
But why is this not working?
Many thanks.