Side navigation
#7173 closed bug (invalid)
Opened October 13, 2010 10:29AM UTC
Closed October 13, 2010 01:43PM UTC
slideDown does not slide correctly on dinamically created layers
Reported by: | elboletaire | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.4.3 |
Component: | effects | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When I try to do this:
var div = $(document.createElement("div")).hide().text("Here comes the text").slideDown();
$("#UserField").parent().after(div);
The slideDown effect does not work propperly. It works if I change the effect for a fadeIn effect or if I do this:
var div = $(document.createElement("div")).hide().text("Here comes the text");
$("#UserField").parent().after(div);
div.slideDown();
Attachments (0)
Change History (2)
Changed October 13, 2010 10:38AM UTC by comment:1
Changed October 13, 2010 01:43PM UTC by comment:2
component: | unfiled → effects |
---|---|
resolution: | → invalid |
status: | new → closed |
I'm a little bit confused: Why would you start sliding down a div that isn't in the page? There are going to be all sorts of problems with that - namely problems with determining how tall to make the div. You should definitely start sliding it down after inserting the div.
Here are the tests:
http://jsfiddle.net/pvmGU/8/