Side navigation
#3788 closed bug (wontfix)
Opened January 06, 2009 08:36AM UTC
Closed May 06, 2009 01:45AM UTC
Last modified March 14, 2012 12:33PM UTC
outerWidth returns 0 when parent item is hidden
Reported by: | slifty | Owned by: | brandon |
---|---|---|---|
Priority: | major | Milestone: | 1.3 |
Component: | dimensions | Version: | 1.2.6 |
Keywords: | outerWidth hidden | Cc: | |
Blocked by: | Blocking: |
Description
When an item's parent has display set to none, outerWidth() returns 0. This makes the method unreliable.
e.g.
<script type="text/javascript">
$(document).ready(function() {
alert($("#test").outerWidth());
});
</script>
<div style="display:none">
<div id="test" style="width:500px">You can't read me!</div>
</div>
As a note -- the documentation says that outerWidth will work for items that are hidden, which is why this behavior seems unexpected.