How may I use Firebug to view attributes of jQuery-retrieved objects at a breakpoint?

Posted by Anton Thorn on Stack Overflow See other posts from Stack Overflow or by Anton Thorn
Published on 2010-03-19T21:37:48Z Indexed on 2010/03/19 21:41 UTC
Read the original article Hit count: 147

Filed under:
|
|

For instance, I've hit a break point on a line of code where I'm setting the height of one div equal to the height of another:

$("box_left").height = $("box_right").height;

How do I view the value of 'height'? All firebug every shows me is 'function()'. :(

© Stack Overflow or respective owner

Related posts about firebug

Related posts about jQuery