[jQuery] Re: Getting height() value on a dynamic area

2008-02-14 Thread polyrhythmic
Do you have the height() called from the AJAX callback function? Make sure the height isn't called until the ajax callback. If that doesn't work, perhaps the elementReady plugin would help. Charles On Feb 14, 11:08 am, GTinMaryland [EMAIL PROTECTED] wrote: I'm working on a layout where the

[jQuery] Re: Getting height() value on a dynamic area

2008-02-14 Thread Brian Cherne
1) Make sure the container's height isn't set by some other script before your ajax call. If it is, set it to auto before putting new data in there and reset it after (if required for some reason). 2) Try using setTimeout(yourFunction, 0) in the AJAX callback function ... where yourFunction is