Opened 12 years ago
Closed 12 years ago
#7173 closed bug (invalid)
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();
Change History (2)
comment:1 Changed 12 years ago by
comment:2 Changed 12 years ago by
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/