Opened 14 years ago
Closed 14 years ago
#3246 closed bug (invalid)
Effects with appends or htmls.
Reported by: | Nile | Owned by: | |
---|---|---|---|
Priority: | trivial | Milestone: | 1.3 |
Component: | core | Version: | 1.2.6 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
If you do something like this:
$(document).click( function (){ $("p").fadeOut("fast"); $("p").html("Text, of course different text. :)"); $("p").fadeIn("slow"); });
It changes the HTML before it fades out.
Change History (5)
comment:1 Changed 14 years ago by
comment:2 follow-up: 3 Changed 14 years ago by
$("p").fadeOut("fast").html("Text, of course different text. :)").fadeIn("slow");
or
$("p").fadeOut("fast",function(){$(this).html("Text, of course different text. :)");}).fadeIn("slow");
comment:3 Changed 14 years ago by
Replying to cloudream:
$("p").fadeOut("fast").html("Text, of course different text. :)").fadeIn("slow");
or
$("p").fadeOut("fast",function(){$(this).html("Text, of course different text. :)");}).fadeIn("slow");
Thank you.
comment:5 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
I hope someone can help.