Possible Duplicate:
Detecting width: auto in jQuery
Using jQuery, how do we find out <div>
s whose width had not been explicitly set up in CSS, regardless inline or non-inline. For example:
#outer-box {
width: 100px;
}
#inside-box {
/* width isn't set explicitly. */
background-color: #000;
}
<div id="outer-box">
<div id="inside-box">...</div>
</div>
I'd like to get a hold of only the div#inside-box
based on the fact its width wasn't explicitly defined via the CSS.