Skip to main content

Bug Tracker

Side navigation

#9866 closed bug (invalid)

Opened July 20, 2011 01:29AM UTC

Closed August 03, 2011 07:44AM UTC

Last modified August 03, 2011 02:25PM UTC

Unable to get height on DIV tag that has begun fading in...

Reported by: aka.homer.jay@gmail.com Owned by: aka.homer.jay@gmail.com
Priority: undecided Milestone: None
Component: css Version: 1.6.2
Keywords: Cc:
Blocked by: Blocking:
Description

I have a function that fades out a DIV, changes the content of the DIV, fades in the DIV and the resizes the font in case there's too much text to fit on one screen...

Here is the calling line that doesn't work anymore:

$("#Request").fadeOut(1000, function() {$("#description").html('<p>' + sDescriptions[iRequest]) + '</p>';$("#title").html(sTitles[iRequest]); $("#Request").fadeIn(1000); AdjustFontSize(" & iScreenH & "); $("#Request").vAlign(); $("#Request").focus(); });

The AdjustFontSize function uses this code, which returns 0 for the height:

divHeight = $('#description').height();

Attachments (0)
Change History (4)

Changed July 20, 2011 02:38AM UTC by aka.homer.jay@gmail.com comment:1

P.S.

This happens in I.E. 8 (haven't tested other browsers), and was not a problem in version 1.6.1 of JQuery.

Changed July 20, 2011 03:08AM UTC by rwaldron comment:2

component: unfiledcss
owner: → aka.homer.jay@gmail.com
status: newpending

Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket!

Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/

Open the link and click to "Fork" (in the top menu) to get started.

Changed August 03, 2011 07:44AM UTC by trac-o-bot comment:3

resolution: → invalid
status: pendingclosed

Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!

Changed August 03, 2011 02:25PM UTC by dmethvin comment:4

At the point where AdjustFontSize is called it would seem that the element isn't yet visible, thus the height of 0. (Assuming that #description is nested under #Request, but that's just a guess since there was no test case.) This seems better triaged on a forum, I don't think it's a bug.