Dreamweaver JavaScript Debugger

Does Dreamweaver CS 3 have a JavaScript debugger?

The only information about something close is that it says that I need to click on the “Preview / debug in browser” button, which opens the page, but debugging never happens when the page has an error. I also see no way to set breakpoints or go through code.

MS Visual Web Developer ( Visual Studio Express - which is free) has a debugger that can be attached to the process. Therefore, even if you are not developing it, you can debug JavaScript in any browser. It also has very rich variable clocks that allow you to expand all the decoders of an object for its corresponding values. I was hoping that Dreamweaver could at least match Visual Web Developer ...

What is the experience of using Visual Studio debugger tools with browsers without the Internet and browsers?

  • Dreamweaver does not have an effective built-in debugger.
  • Firebug works fine with non-Internet browsers Explorer
  • Visual Studio tools work great with identifier browsers.

What works well in all directions?

+4
source share
6 answers

Debuggers are specific to a specific interpreter / compiler, not a language. The same language - in this case JavaScript - can have more than one interpreter / compiler. In particular, each browser has its own.

So, in order to debug JavaScript in Internet Explorer, you need the Internet Explorer debugger - either built-in to Internet Explorer, or one of the options for Visual Studio. To debug JavaScript in Chrome, use the Chrome debugger. To debug JavaScript in Firefox, use Firebug . (And so on.)

+5
source

There is nothing in Dreamweaver that handles JavaScript debugging, but there are several other options out there for free.

Firebug add-on for Firefox allows you to set breakpoints and execute JavaScript. Download and play with it, and you should find what you need. Below is a quick tutorial on your points: Debugging Javascript with Firebug

+2
source

I solved most JavaScript problems using the error console in FireFox. I have never had to work Dreamweaver.

0
source

I agree with CheGueVerra, defenitively the best debugger is the "error console" in Firefox. If you want to do it even better, just download the Firefox Add-on Console² . All you need to debug JavaScript code is.

0
source

You can also use Firebug , which, in my opinion, is the best JavaScript debugger for Firefox, even if sometimes there are some problems (see my post, a few days ago, the question is the Firebug debugger does not work in Firefox 3.x? ).

0
source

I assume that you are looking for something where you can attach breakpoints and such ... Well, without repeating the others (this can be done in Firebug), try Aptana Studio . It can be run as a plugin on Eclipse and can be used to debug JavaScript.

0
source

All Articles