#5393 closed bug (worksforme)
jquery.height() returns incorrect values in Google Chrome 3.0
Reported by: | Walta | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | |
Component: | core | Version: | 1.3.2 |
Keywords: | height | Cc: | |
Blocked by: | Blocking: |
Description
<div>LargeTextBlock</div>
$('#div').height() returns incorrect values in Chrome.
Same problem with the outerHeight() and innerheight() aren't.
bug found on Vista 32 SP1 with Google Chrome 3.0.195.27 (current latest version).
Change History (2)
comment:1 Changed 12 years ago by
Milestone: | 1.4 |
---|---|
Priority: | major → low |
Resolution: | → worksforme |
Status: | new → closed |
comment:2 Changed 12 years ago by
Error example http://jsfiddle.net/3jzK2/ work only in Chrome.
Problem consists in overflow:hidden
#up-events ul {font-size: 1em;overflow:hidden}
change it to
#up-events ul {font-size: 1em;}
And everything will be fine.
Note: See
TracTickets for help on using
tickets.
No longer an issue
http://jsfiddle.net/rwaldron/vHLGg/1/
Also - did you really use $('#div') to try and find <div>? That's invalid.