I have a quite simple question, that ate me 4 hours and is not yet solved: How to find next span with specific class with jQuery? I have the following html

<tr>
    <td align="right">Име:&nbsp;</td>
    <td align="left">
         <input type="text" value="<?=$profileSQL['user_name']; ?>" name="user_name" class="input required" />
    </td>
</tr>
<tr>
    <td align="right" colspan="2">
         <span class="error"></span>
    </td>
</tr>

and I validate it with jQuery. I want if there's an error message, generated with js (just a string), jQuery to find nearest span with class .error and to text() the message in there. I tried with nextAll(), next("span.error") and a lot of other things, but nothing helped me.

Thanks in advance!

link|improve this question

30% accept rate
Try showing the actual rendered html as seen by the browser (view source) rather than the, I assume, php. – David Thomas Mar 5 '11 at 13:55
What is the root node ? – jAndy Mar 5 '11 at 13:58
@DavidThomas: this php is just a string, but i tried your way and the result is the same @jAndy: By root node I think you mean the main container? It's table, if you're asking that – Emil Avramov Mar 5 '11 at 13:59
How do you detect the error? What is the element (this) that you are starting from? What does your javascript currently look like? – tvanfosson Mar 5 '11 at 13:59
function validate() { var err = 0; $("#profileForm").find(".required").each(function(){ var elem = $(this); if(elem.attr("name") == "user_name") { if(!elem.val()) { err++; elem.addClass("errorInput"); elem.next(".error").text(nameErrEmptyMsg); } else if(elem.val().length < 5) { err++; elem.addClass("errorInput"); elem.next(".error").text(nameErrShortMsg); } } else { } }); if(err > 0) { return false; } } – Emil Avramov Mar 5 '11 at 14:02
feedback

4 Answers

up vote 0 down vote accepted

I know this may not be exactly what you're looking for, but if you've GOT the input, like this:

var input = $('input[name="user_name"]');

Then you can just do:

input.parents('tr').eq(0).next().find('.error').text(nameErrEmptyMsg);
link|improve this answer
feedback

the problem is that .next() and .nextAll() only search through through the siblings (elements that have the same parent).

From jQuery documentation:

Description: Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.

In your case you have:

  <tr> 
     <td> title here</td> 
     <td><input name="user_name"/> </td>
   </tr>
   <tr>
     <td colspan="2">
       <span class="error"></span>
     </td> 
   </tr>

As i understand your JQuery code is run on the input, right? In this case before calling newxt() or nextAll() you should first go up 2 levels, until the and afterwards select the next because there is the that you want to find, so:

here's a working example to check it: http://jsfiddle.net/EM5Gw/

link|improve this answer
paladin, maybe you could explain why this works then? jsfiddle.net/wPZgg – Jaitsu Mar 5 '11 at 16:09
feedback

try

  console.log($("td>span").next().find(".error").text())
link|improve this answer
I use only IE (other browsers are forbidden with php), so I got no Firebug – Emil Avramov Mar 5 '11 at 14:08
use alert instead of console.log, and check the result.. – diEcho Mar 5 '11 at 14:11
1  
Hi, regarding FIREBUG and IE, you can get FIREBUG-LITE that will work with IE6+. See http://getfirebug.com/firebuglite. – Neil Mar 5 '11 at 15:18
feedback

You can use the next('span.error'):

http://jsfiddle.net/wPZgg/

link|improve this answer
I tried with this, but nothing happens – Emil Avramov Mar 5 '11 at 14:06
have you taken a look at the jsfiddle? isn't that what you want it to do? also, what jquery version are you using? – Jaitsu Mar 5 '11 at 14:06
feedback

Your Answer

 
or
required, but never shown

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