PDA

View Full Version : is there some kind of debugger for js in this world?


umen
11-07-2002, 11:19 PM
except the Netscape consol
something that will help me more then using the alert every
f**ing time .. is there something in the work's somewhere ?
.......
(:

krycek
11-07-2002, 11:38 PM
I would definitely love a proper JS debugger - something like the VB one with highlighted code lines and the ability to set watch and break points (drools longingly! :p)

::] krycek [::

jkd
11-07-2002, 11:55 PM
Try the Venkman JS Debugger that is bundled with Mozilla. It is among the best, and free!

umen
11-08-2002, 12:10 AM
can i download it as stand alone application ?
or it comes build in in mozila ?
sorry but im working at work only with IE
can you give more details on this debugger?

chrismiceli
11-08-2002, 12:44 AM
i use mozilla mozilla under linux. the ie debugger I hate but can be downloaded at msdn.microsoft.com.
when i ran windows windows the best one i found was the trial version of dreamweaver, it worked great and html and javascript, i would recommend it but it is a trial unless you have like a kajilian dollars. :)

krycek
11-08-2002, 12:53 AM
um... I use Dreamweaver MX for my coding, and it does not have a very good debugger (IMHO!) either that or I haven't found it. :confused:

::] krycek [::

chrismiceli
11-08-2002, 01:35 AM
it is hard to find, if you go to the help pages and search for the jsdebugger or javascript debugger it tells you how to use it, haven't used it in a while thought.

krycek
11-08-2002, 02:43 AM
Wow, thanks - I never even knew that was there! :eek:

It looks surprisingly good... I think I will have to do a bit of experimentation with it tomorrow :) it looks like it will be a life-saver :D

::] krycek [::

Beck
11-08-2002, 04:20 AM
I also prefer to avoid alerts, if they get locked into infinite loops, you're browser is shutting down.

I use the window.status = x
for some of my debugging. Not as nice as a real debugger, but certainly more convenient than the alert , for me anywayz.

Good luck