vote up 12 vote down star
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?

flag

15 Answers

vote up 10 vote down check

Installing YSlow for Firebug from Yahoo.

link|flag
YSlow, ironically, slows my work machine to a crawl. It doesn't seem to have a problem with anything else. – JoeBloggs Dec 12 '08 at 11:11
1  
you can try Page Speed from Google .) – Eimantas Sep 13 at 19:20
vote up 20 vote down

Here is one of my tips.

Debugging Javascript you can set conditional breakpoints right-clicking on the red breakpoint symbol:

alt text

link|flag
vote up 8 vote down

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.

link|flag
yes, the direct dom manipulation is just awesome, really big timesaver! – Sander Versluys Jul 27 at 6:50
vote up 6 vote down

If you're in the habit of writing Greasemonkey scripts, Firebug's $x function is invaluable for debugging your XPATH. In the HTML tab, you can also right click on any element and "Copy XPATH" to speed you on your way to document.evaluate heaven.

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.

link|flag
Could you expand on how you can use $x please. – Sam Hasler Oct 8 '08 at 2:20
vote up 5 vote down

Another nice firebug extension is FireSpider, which allows you to easily detect broken links etc in your websites.

link|flag
vote up 4 vote down

the firebug console for easy debug output - superb alternative to alert('blah')

link|flag
Example usage: console.log('blah') (only works with Firebug is installed, so be sure to remove from your production code.) – Jason Creighton Jul 25 at 6:15
I use this: if (!console) {log = alert;} else {log = console.log;} – Igor Zevaka Oct 21 at 23:59
That way if you still have debug statements they would quickly show up as alerts when run without firebug. – Igor Zevaka Oct 22 at 0:00
vote up 4 vote down

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.

link|flag
vote up 4 vote down

Not a Firebug trick itself - but another nice extension for Firebug is Firecookie. It allows to easy manage cookies.

link|flag
vote up 4 vote down

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

	public static function debug(text:Object):void {
		trace(text);
		ExternalInterface.call("console.log", text.toString());
	}

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.)

link|flag
great idea! thanks! – Sander Versluys Jul 27 at 6:51
vote up 3 vote down

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.

link|flag
vote up 2 vote down

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 console object to JavaScript.

This fix will prevent JavaScript in IE and other browsers from breaking when FireBug's console object is used in the development phase.

This is a great solution for debugging the same application across multiple browsers. (No more commenting out all your console object calls).

try
{
    var console = {
        log: function () { return; },
        debug: function () { return; },
        info: function () { return; },
        warn: function () { return; },
        error: function () { return; },
        "assert": function () { return; },
        dir: function () { return; },
        dirxml: function () { return; },
        trace: function () { return; },
        group: function () { return; },
        groupEnd: function () { return; },
        time: function () { return; },
        timeEnd: function () { return; },
        profile: function () { return; },
        profileEnd: function () { return; },
        count: function () { return; }
    };
}

catch (e) { }

You can even modify the console object to work in other browsers:

try
    {
        var console = {
            log: function () { for (msg in arguments) { alert(msg); } },
            ....

A neat bonus is that Visual Studio is now able to recognize the console object and it's methods.

link|flag
getfirebug.com/firebug/firebugx.js – insin Oct 2 '08 at 10:16
Great. But what if you want to implement functionality which emulates FireBug's console object? Take a look at my updated answer. – roosteronacid Oct 2 '08 at 10:19
so what happens to your var console if the Firebug console already points to something? JS throws an Exception? – yar Mar 5 at 7:30
Seems like you can now override the console object. I'd suggest you go with the link insin has posted. – roosteronacid Mar 6 at 9:25
super duper stuff guys, thanks! – Sander Versluys Jul 27 at 6:52
vote up 0 vote down

Change style and CSS values on the fly to test as I debug my CSS and design...

link|flag
vote up 0 vote down

It's not a Firebug add-on, but very useful too:

Firefox Throttle

Firefox Throttle is a small extension that allows you to cap download/upload rates and monitor current bandwidth utilization.

Link to the add-on on Mozilla

alt text

Features:

  • Limit download and upload rates for all open Firefox windows/tabs and downloads
  • Bursting mode (allow short rate "bursting" after inactivity)
  • Preset and custom limits
  • Exclude lists for IP addresses and domains that should not be throttled
  • Automatically excluded LAN IPs
  • Traffic stats (for current session and historic since last reset)
  • Status panel with current bandwidth utilization indicators (or traffic counters)
  • Quick throttling on/off toggle on status panel
link|flag
Why is this spam here? What relation does it have to Firebug at all? – Jeremy Rudd Sep 13 at 19:19
vote up 0 vote down

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.

link|flag
vote up 0 vote down

CodeBurner is a documentation addon for Firebug, that displays reference material for any HTML element or CSS property. It adds a Reference panel containing:

  • standards compliance
  • browser compatibility
  • syntax
  • code samples

Link to the add-on on Mozilla

Preview image

You can also:

  • search all known HTML elements, attributes, and CSS properties.
  • lookup the selected item via context-menus of the following Firebug panels:
    • HTML and CSS
    • DOM crumbtrail
    • Inspector
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.