> From: gecko68
>
> Am I missing something regarding cross browser compatibility?
>
> When I try to read parseInt($("#tagCloudData").css('width'))
> I get NaN in IE, yet Firefox gives me the correct value.
>
> The width is NOT set in the style sheet or in the style tag,
> as it is variable. I want to read it's width.
Are you looking for the offsetWidth?
$('#tagCloudData')[0].offsetWidth
-Mike

