vote up 2 vote down star

I have the following items in a web page:

  • an instance of the Editor from Telerik's RadControls for ASP.NET AJAX: call it "Editor"
  • a div that can change position by means of jQuery's .animate function: call it "divAnimate"
  • a div with a css overflow setting inside divAnimate: call it "divOverflow"

When divAnimate moves, the part of Editor it resides under (or moves to be under) moves slightly and then pops back into its normal position when divAnimate stops moving. This happens when the style for divOverflow includes an overflow setting.

If divOverflow's overflow style is removed, Editor does not move at all when divAnimate moves.

The described behavior occurs in Firefox (FF 3.5.1), not in Internet Explorer (IE8).

Has anyone bumped into this and solved it?

flag

1 Answer

vote up 1 vote down check

Try removing the overflow before beginning the animation. Use the version of animate that provides a callback to add the overflow back when it is complete.

animate( params, [duration], [easing], [callback] )
link|flag
This solves the problem in the following way. Right before the animation set overflow to 'visible.' After the animation (use the callback) set overflow to 'auto.' Thanks palehorse! – Ralph McArthur Jul 20 at 18:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.