I think every web developer loves Firefox's Firebug extension for solving CSS, Javascript or HTTP problems.
I use it very often, but I'm sure that I'm not aware of some hidden gems. What is your favorite (not evident) trick or tip for Firebug?
|
12
|
I think every web developer loves Firefox's Firebug extension for solving CSS, Javascript or HTTP problems. I use it very often, but I'm sure that I'm not aware of some hidden gems. What is your favorite (not evident) trick or tip for Firebug?
|
|||
|
|
|
|
Installing YSlow for Firebug from Yahoo. |
||
|
|
Here is one of my tips. Debugging Javascript you can set conditional breakpoints right-clicking on the red breakpoint symbol:
|
|||
|
|
|
|
Although it's not really a trick or anything nor is it even specific to Firebug, it is my favorite thing about Firebug since I literally use it everyday if not several times an hour and that is of course the ability to directly edit HTML and CSS and watch the result appear instantly. It's an incredible time-saver over just editing and re-uploading to check things out, layout-wise. Everything I do would probably take about twice as long without that feature. |
||
|
|
|
If you're in the habit of writing Greasemonkey scripts, Firebug's Logging all events for any particular element by right clicking on it in the HTML tab and selecting "Log Events" is also pretty nifty. On the DOM tab, the Options drop down lets you show only properties and functions which have been user defined, which is handy for finding out exactly what impact you're having on the global namespace or debugging problems where someone has accidentally introduced global variables. |
||
|
|
|
Another nice firebug extension is FireSpider, which allows you to easily detect broken links etc in your websites. |
||
|
|
|
|
the firebug console for easy debug output - superb alternative to alert('blah') |
||||||
|
|
|
Firephp lets you produce debug messages from php that are sent as headers and logged by firebug. Pixelperfect allows you to place an overlay image in order to align html elements to your draft. |
||
|
|
|
|
Not a Firebug trick itself - but another nice extension for Firebug is Firecookie. It allows to easy manage cookies. |
|||
|
|
|
|
I use Firebug now for Flex and Flash apps to figure out what's up (since trace requires somewhere to trace). The method looks like this, sometimes
Works like a charm... (Still not sure if I need console to be an existent Javascript object, in which case you would need to combine roosteronacid's solution with this one. Since you control the HTML page, generally, anything is possible.) |
|||
|
|
|
If you click on some CSS property name or value in Style tab, you can scroll through all possible values using UP and DOWN arrow keys. It is also works on sizes by incrementing them by 1 (if you press UP on 10px value it will go 11px, 12px and so on) - useful when you try to figure out correct element size/margin as you don't have to enter every number manually. |
||
|
|
|
|
UPDATE: Seems like you can now override the console object. I'd suggest you go with the link insin has posted as a comment to this answer. Only FireBug offers the This fix will prevent JavaScript in IE and other browsers from breaking when FireBug's This is a great solution for debugging the same application across multiple browsers. (No more commenting out all your
You can even modify the
A neat bonus is that Visual Studio is now able to recognize the |
||||||||||
|
|
|
Change style and CSS values on the fly to test as I debug my CSS and design... |
||
|
|
|
|
It's not a Firebug add-on, but very useful too: Firefox Throttle
Features:
|
||
|
|
|
Sometimes when debugging ajax the console doesn't show all requests (for example if you are using cross domain ajax or hidden iframes). You can still view them if you switch to "Net" tab. |
||
|
|
|
|
CodeBurner is a documentation addon for Firebug, that displays reference material for any HTML element or CSS property. It adds a Reference panel containing:
You can also:
|
||
|
|