So I am looking for a way to remove all list items with one click, not that hard, but to give it some nice effect I wanted to let the first slideup and remove this, once the first is remove do the same for the second list item and so on, until every list item is removed.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Following removes all items in list sequentially at one time:
DEMO: http://jsfiddle.net/UzPy5/2/ To remove individually can use |
|||||||||
|
|
Give all the list items the same class, then call $(".yourclass"), which will return an array. Then go through that array with something like setInterval (http://www.w3schools.com/js/js_timing.asp) which can have your slideup function and your timing. Maybe for sliding you want (http://api.jquery.com/animate/) or some other plugin. |
|||
|
|
|
Recursively
|
|||
|
|