views:

172

answers:

5

How do I show all divs in Firefox?

+1  A: 

With jQuery;

$('div').show();

I don't know if you are asking how to do it with JavaScript or what.

eKek0
+1  A: 

Get the Web Developer Extension. Use the outline menu.

Ben
A: 

As Ben said, the Web Developer Extension.

Firebug is often essential as well.

Dean J
A: 

Firebug can show the div's as you scroll over them.

Chris
+1  A: 

In all browsers you could do something like this:

div {border: 1px red solid;}
Keir