Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
What have you tried? – popnoodles Dec 29 '12 at 18:53

3 Answers

up vote 1 down vote accepted

Following removes all items in list sequentially at one time:

$('button').click(function() {
    var $first = $('#list li:first')
    removeItem($first);
})


function removeItem($el) {
    $el.slideUp(function() {

        var $next = $el.next()
        if ($next.length) {
            removeItem($next)
        }
        $(this).remove()
    })
}

DEMO: http://jsfiddle.net/UzPy5/2/

To remove individually can use

share|improve this answer
nice but I have to click every button over and over. This also can be done with something like $('li').eq(0).slideUp().remove() – user759235 Dec 29 '12 at 19:08
oops I removed element too soon and didn't test it when I added line to remove..try updated fiddle: jsfiddle.net/UzPy5/2 – charlietfl Dec 29 '12 at 19:15
ah yes, this is what I needed....many thanks! – user759235 Dec 29 '12 at 19:17
if you want first item left in list start with $('#list li').eq(1) instead of first() – charlietfl Dec 29 '12 at 19:20

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.

share|improve this answer

Recursively fadeOut each element in the list. This could go without jQuery, but you'd need to roll-your-own animation (or use CSS animations).

function fadeList(list, index) {
  if (index < list.length) {
    list[index].fadeOut(800, function() {
      fadeList(list, i+1);
    });
  }
}

$('#remove-btn').on('click', function(e) {
  fadeList($('#my-list li'),0);
 });
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.