Side navigation
#9035 closed feature (invalid)
Opened May 01, 2011 01:44AM UTC
Closed May 05, 2011 02:05PM UTC
Enhancement for remove and append
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.next |
Component: | effects | Version: | 1.5.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I think it would be great if I could do something like this:
$('a').remove(500);
Which would be the equivalent of
$('a').hide(500, function() { $(this).remove(); });
Also something like:
$('<a href="#">link</a>').appendTo(document.body, 500);
should do something like:
$('<a href="#">link</a>').appendTo(document.body).hide().show(500);
I'm not sure where to put this but I hope the Powers That Be can implement this, shouldn't be too hard
Attachments (0)
Change History (3)
Changed May 01, 2011 02:21AM UTC by comment:1
component: | unfiled → effects |
---|
Changed May 01, 2011 09:42PM UTC by comment:2
priority: | undecided → low |
---|---|
type: | enhancement → feature |
Feel free to submit to the 1.7 proposal, which will be open when 1.6 is released (May 3).
Changed May 05, 2011 02:05PM UTC by comment:3
resolution: | → invalid |
---|---|
status: | new → closed |
Closing, please add to the 1.7 proposal list if you would like to have it considered. I am not a fan though.
I think this is a great candidate for dunk punching!
http://paulirish.com/2010/duck-punching-with-jquery/