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

I have a var containing a number and need to subtract this number from the total number of list items. Then I need to remove the end items in the list eg. Total = 20; Number of list items = 18; Final number = 2; Then remove the last 2 list items.

Thanks for any help.

share|improve this question

2 Answers

up vote 6 down vote accepted

I'd use the :gt() selector.

$( 'li:gt(' + ( maxAllowed-1 ) + ')' ).remove();

Demo: http://jsfiddle.net/JAAulde/5GdQx/

share|improve this answer
+1 So simple.. I almost re-invented the wheel. HOwever :lt() would be more apt for the scenario. – Chandu Apr 4 '11 at 20:43
Thanks for +1. I'm not sure whether or not lt() would be better as he knows the max he wants in the final result. Plus this way he doesn't have to do the subtraction operation to figure out how many he has to remove. – JAAulde Apr 4 '11 at 20:45
@JAAlude: OP wants to remove the items from last hence lt would be much better I guess. – Chandu Apr 4 '11 at 20:47
Perfect. Thanks. Final code...var totalImg = $("#showreel li").size() - 1;$("#buy-links li:gt(" + totalImg + ")").remove(); – user141621 Apr 4 '11 at 20:53

$.slice(start, [end])

jQuery Documentation

UPDATE:

Example:

$('li').slice( -numToRemove ).remove();

share|improve this answer
This really isn't a complete answer, but I didn't know about the $.slice function until now, thanks! And good referencing. – Groovetrain Apr 4 '11 at 20:46

Your Answer

 
discard

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