I have an id for a <tr id="tagTR"> Given the above, is it possible to find the next input:text element regardless of any other mark up in between . Is there a jQuery selector that I can use for this scenario?

For example :

<tr id="tagTR"> 
</tr>
<tr id="tagRed"> 

  <td> </td>
</tr>
<div>
 <tr>
   <td>
     <input> // This is what I want to get to. 
   </td>
 </tr>
</div>
link|improve this question

78% accept rate
Please post your actual markup. You have <tr> elements with <div> parents and siblings, which is invalid HTML. – Frédéric Hamidi Jan 17 at 21:26
You need to use nextAll() to search all sibling relative to the known marker element and if what your looking for is not found, grab the list of .parents() of the known element and loop through each sibling of each parent to find the element in question, basically calling a nextAll() on each parent of your known element. – Jeff Wilbert Jan 17 at 21:32
@Frederic - You are right, it's invalid HTML but it was just some sample code I put up on the fly, the question was more about finding out the next input element. Thanks anyway. – user1006072 Jan 18 at 7:10
@JeffWilbert Thanks Jeff - that should help. – user1006072 Jan 18 at 7:10
feedback

3 Answers

up vote 2 down vote accepted

I thought this question was very interesting. It seems others are reading this as, find the next input among siblings. But I read it as - find me the next input no matter what. I don't know if its in a sibling, a parent or a parent's sibling. This is what I came up with based on feedback I received from this question.

http://jsfiddle.net/GesSj/1

//assume you know where you are starting from
var $startElement = $('#foo');

//get all text inputs
var $inputs = $('input[type=text]');

//search inputs for one that comes after starting element
for (var i = 0; i < $inputs.length; i++) {
    if (isAfter($inputs[i], $startElement)) {
        var nextInput = $inputs[i];
        alert($(nextInput).val());
    }
}

//is element before or after
function isAfter(elA, elB) {
    return ($('*').index($(elA).last()) > $('*').index($(elB).first()));
}
link|improve this answer
Thanks much mrtsherman. You are absolutely right, that was my intent and that's how I wanted the reader to interpret the question. Your solutions is interesting one - but I was wondering if there is a simple Jquery selector for it. – user1006072 Jan 18 at 7:18
@user1006072 - unfortunately there is not. It is a pretty unusual question because usually there is SOME structure that you can depend on. Then you would use next, nextAll, filter or find. – mrtsherman Jan 18 at 13:49
feedback

You cannot have a div tag in between TR's. It is not a valid markup.

To find the input element from the referred tr you can try this.

$('#tagTR').nextAll().filter(function(){
    return $(this).find('input:text').length > 1;
}).find('input');
link|improve this answer
This would only search the sibling relative to the tag for the input, based on the OP's question he wants to find the next input relative to the tag whether its in the siblings or a parent or its sibling, you just need to add on a loop of all parents of the tag with a nextAll() call. – Jeff Wilbert Jan 17 at 21:35
In that case we don't know till what parent level OP wants to look. I think OP wants to look in all other rows. – ShankarSangoli Jan 17 at 21:36
There wouldn't be a level it'd be all parents until the next input is found or until you reach the beginning parent HTML, you have to use .parents() to loop through all the parents of the TR node and with each parent use .nextAll() to search all sibling of it for the input. I just realized that even then that wouldn't work exactly because the parent node could have an input in it that's before where the tag element is. – Jeff Wilbert Jan 17 at 21:38
That makes sense but it all depends on OP's knowledge of markup. We can first look in the siblings if not present then look in one level up and keep moving one level up until we find it. – ShankarSangoli Jan 17 at 21:42
Also the thing to keep in mind if using .parents() and .nextAll() to find the input is this for example jsfiddle.net/WNsaD look at the HTML markup. You'd have to make sure the input found is ahead/in front of the marker element and not really behind it. – Jeff Wilbert Jan 17 at 21:48
show 2 more comments
feedback

You can use "next":

$("#tagTR").next("input")
link|improve this answer
next only looks at the immediately following sibling, and returns it if it matches the selector. – James Allardice Jan 17 at 21:29
Hi Troy - this doesn't help. James is right about .next() – user1006072 Jan 18 at 7:20
feedback

Your Answer

 
or
required, but never shown

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