tags:

views:

171

answers:

3

I would need to create some webpages that are using jscript and different jscript libraries heavily and I will need to write a littlebit of code and debug it through to see if that works. I would like to know if there is an IDE exists on Windows jsut to do this or there is a combination of tools that can be used for this purpose?

+1  A: 

Visual Studio

Since JScript Microsoft dialect of ECMAScript.

David Basarab
+4  A: 

I'd suggest Visual Studio Web Express, which you can easily configure to be a JScript debugger: http://www.berniecode.com/blog/2007/03/08/how-to-debug-javascript-with-visual-web-developer-express/

naivists
+1  A: 

In my opinion hands down the best JavaScript debugger available for windows is Visual Studio, unfortunately its far from free however the link that naivists posted allows you to use Visual Studio Express - Web Developer Edition (which is free) to do the same thing:

How to debug JavaScript with Visual Web Developer Express

You could also look into using tools like Firebug (Firefox only) - these sorts of tools are very good at inspecting and tweaking the layout of the page, however I've always found the JavaScript debugger to be a little lacking.

Kragen