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?
|
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? |
||||
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
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. |
||||
|
|
The Firebug console for easy debugging output. It is a superb alternative to |
|||||||||||||||
|
|
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. |
|||||||||
|
|
Not a Firebug trick itself - but another nice extension for Firebug is Firecookie. It allows to easy manage cookies. |
||||
|
|
|
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. |
||||
|
|
|
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.) |
|||||
|
|
|
Another nice Firebug extension is FireSpider, which allows you to easily detect broken links, etc. in your websites. |
||||
|
|
|
My absolute favorite thing is the built-in variable |
||||
|
|
|
UPDATE: Seems like you can now override the console object. I'd suggest you review Insin (which has posted as a comment to this answer). Only Firebug offers the This fix will prevent JavaScript in Internet Explorer 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 |
|||||||||||
|
|
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:
|
||||
|
|
|
If you are not sure how many arguments are passed to some callback function and what are they:
you can quickly replace this function with
or use js
|
||||
|
|
|
FireQuery. It will inject jQuery into the page and let you use it from the console tab, making it easy to test jQuery or just run commands against the page you're on. It also adds some extensions to the HTML tab that will allow you to see things like jQuery's
|
||||
|
|
|
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. |
||||
|
|
|
Many people sometimes forget to use these: console.log( x,y,z ) -> prints the 3 variables in 1 console line Also, I heavily use the NET tab, which is very helpful in viewing JSON traffic data, also for analyzing blocking scripts, and measure HTTP requests times. |
||||
|
|
|
Whenever I see an annoying, flashy advertisement that's distracting me from reading, I simply fire up Firebug, use the inspector to inspect the advertisement's element (or parent element) and then set its CSS "display" attribute to "none". Presto, no ad! |
|||||||||
|
|
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 the "Net" tab. |
||||
|
|
|
Writing and testing code right inside Firebug, especially coding helper functions. The feeling of Coding Live is very cool. See a few recent helper functions I have written in Firebug. |
|||||||||
|