Trouble with debugging in Firefox 5
Hello folks,
I just started using WebStorm yesterday and so perhaps I'm missing something obvious here, but I'm having issues with debugging even a very basic helloworld html page in Firefox. Here's what I have:
<html>
<head>
<title></title>
<script type="text/javascript">
function HelloWorld()
{
myname = "Joe";
alert(myname);
}
HelloWorld();
</script>
</head>
<body>
</body>
</html>
I put a breakpoint on each line of the code (just to overkill a little bit), start Debug, Firefox opens a new tab with the alert message successfully displaying on the screen. No output whatsoever in the WebStorm console, no breakpoints hit. JetBrains Firefox extension 0.4.6 is successfully added to FF plugins, and Firebug is disabled altogether (I read it might collide). I'm really enjoying developing in WebStorm, but the ability to debug from within it would be a big selling point for me so I don't have to do it externally in a tool such as Firebug. What am I doing wrong here? Please advise.
Thanks!
Please sign in to leave a comment.
Please reproduce the problem, then use Help | 'Reveal Log' action to open the directory containing the log file and post here idea.log file.