What's an easy way to iterate x number of times using next() (applying the same function each time)?

I am working in Sharepoint and have limited control of the HTML; what I can do is find an element by its ID, track down the closest <td>, hide() it, and then move on to the next one (I don't want all the <td>'s, just about 7 or 8 in a row).

The code below works but it's not that pretty.

$("#my-easily-identifiable-id").closest("td").hide();
$("#my-easily-identifiable-id").closest("td").next().hide();
$("#my-easily-identifiable-id").closest("td").next().next().hide();
$("#my-easily-identifiable-id").closest("td").next().next().next().hide();
[ ... etc ... ]

What's a better way to do this?

Thanks

PS: added a fiddle (genius)

link|improve this question

1  
Can you post some sample html that this would be working on (in a fiddle)? – Michael Haren Oct 7 '11 at 19:30
check out api.jquery.com/nextUntil – Billy Moon Oct 7 '11 at 19:32
@MichaelHaren I've been away too long - I didn't even know about fiddle! That is amazing. Posted and updated my post. – thornomad Oct 11 '11 at 16:15
feedback

4 Answers

up vote 5 down vote accepted

Use .nextAll() + .andSelf() with .slice().

$("#my-easily-identifiable-id").closest("td").nextAll().andSelf().slice(0, 7);
link|improve this answer
Definitely the most humanly readable. Thanks. – thornomad Oct 11 '11 at 16:17
feedback

I think a simpler solution than those posted so far would be .nextUntil():

//to get next 8 elements
var i = $('#my-easily-identifiable-id').index();
$('#my-easily-identifiable-id').closest('td').nextUntil('', ':lt(' + (i+8) + ')');

//to get self and next 3
var i = $('#my-easily-identifiable-id').index();
$('#my-easily-identifiable-id').closest('td').nextUntil('', ':lt(' + (i+3) + ')').andSelf();

Grabs all "next" elements until the filter is hit (in this case we choose the next 8 elements). Verified by jsFiddle.

link|improve this answer
1  
There's definitely fewer methods involved, but I'm not sure I'd call it simpler. +1 anyway – Blazemonger Oct 7 '11 at 20:16
Similar to some of the other answers, you're not including the current element, which the original code is. Also, probably as a result of the fiddle, you're not using closest("td") as the original is. – James Montagne Oct 7 '11 at 20:27
1  
@James, the second example does include the current element (see .andSelf()) and this technique will work with the selected element, or the closest 'td' or any other selected element; updated the post – Chad Oct 10 '11 at 17:20
feedback

I've not tried it, but perhaps the following might work (I'll test momentarily):

$("#my-easily-identifiable-id").siblings().slice($(this).index(),($(this).index() + 8)).hide();

Tested and verified with a JS Fiddle demo.

link|improve this answer
.slice is one of those jQuery functions that almost never gets used, but is mighty useful when you need it. – Blazemonger Oct 7 '11 at 19:34
2  
You've lost the .closest("td") and also need to include the original td, not just its siblings. – James Montagne Oct 7 '11 at 19:38
feedback

Maybe something like this:

$("#my-easily-identifiable-id").closest("td").hide();
$("#my-easily-identifiable-id").closest("td").nextAll().hide();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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