I want to get all the checkboxes after a specific element. This checkboxes are in different divs and tables. I tried:
$('.available').click(function() {
$(this).nextAll("input:checkbox").each(function()
{
//code
});
});
Thanks
|
show 1 more comment
feedback
|
|
You have to climb the DOM (test case):
Do keep in mind that this is quite performance heavy. You are:
This is jQuery magic, but there is definitely a better way outside of the ease of jQuery. This might be O(n^n) complexity--the worst kind. | |||||||||||
feedback
|
|
I don't know if your specific element is a checkbox, but otherwise you'd have to start with a set that contains all checkboxes and your element:
You could then find out the index of your element in that set, by using
And you would also be able to reduce your set to everything with after that index:
| |||
|
feedback
|
|
first let's get all the checkboxes:
next, prepare an array to hold just the ones we want:
now let's loop through them to looking for our starting point:
This is totally untested, but you'll get the idea. | |||
|
feedback
|
nextAllworks if the elements are all siblings. You said you tried... have you been successful? If not, how do you expect anyone to help you without knowing what problem you face and what is the structure of your HTML document? – Felix Kling Dec 14 '11 at 12:06