Side navigation
#5393 closed bug (worksforme)
Opened October 19, 2009 09:42AM UTC
Closed October 27, 2010 10:30PM UTC
Last modified January 21, 2011 09:20AM UTC
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).
Attachments (0)
Change History (2)
Changed October 27, 2010 10:30PM UTC by comment:1
milestone: | 1.4 |
---|---|
priority: | major → low |
resolution: | → worksforme |
status: | new → closed |
Changed January 21, 2011 09:20AM UTC by comment:2
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.
No longer an issue
http://jsfiddle.net/rwaldron/vHLGg/1/
Also - did you really use $('#div') to try and find <div>? That's invalid.