Bug Tracker

Opened 12 years ago

Closed 12 years ago

Last modified 12 years ago

#9866 closed bug (invalid)

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

Reported by: aka.homer.jay@… Owned by: aka.homer.jay@…
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();

Change History (4)

comment:1 Changed 12 years ago by aka.homer.jay@…

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.

comment:2 Changed 12 years ago by Rick Waldron

Component: unfiledcss
Owner: set to aka.homer.jay@…
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.

comment:3 Changed 12 years ago by trac-o-bot

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!

comment:4 Changed 12 years ago by dmethvin

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.

Note: See TracTickets for help on using tickets.