views:

187

answers:

2

Is there a way to beautify javascript and css in Firebug? I'd like to be able to view formatted js instead of the compressed version :).

A: 

CSS is already beautified in Firebug, as clearly seen by comparing the CSS tab or CSS pane with the raw source.

JavaScript, alas, is not. The best you can do, for now, is to paste the code into something like http://jsbeautifier.org/ .

However, if you write a Firebug extension that does this, you will have all of our gratitude. ;-)

Brock Adams
A: 

there is now a plugin that intercepts javascript downloads and deminifies it at that point. unfortunately, the way it hooks into firefox means that it applies to all javascript downloads and just not specific ones and the javascript files have to be served with an appropriate mime type.

https://addons.mozilla.org/en-US/firefox/addon/247565/

drscroogemcduck