I have a number of elements with a certain class and am trying to append something to them should a certain condition be true. Here is an example, but it tells me this.value() is not a function. I am not sure how to refer to an individual element using jquery.

<span class="numbers">1</span><br>
<span class="numbers">2</span><br>
<span class="numbers">3</span><br>

$('.numbers').after(function() {
    if (this.value() > 1) return ('<span>Bigger than one.</span>');
});

http://jsfiddle.net/SkuW3/

link|improve this question

71% accept rate
It should be $(this).value(), but a <span> doesn't have a value IIRC. – KennyTM Apr 6 '11 at 16:08
Umm, there is no .value() it is .val(). Regardless it should be .text() in this instance. – Eli Apr 6 '11 at 16:17
feedback

2 Answers

up vote 5 down vote accepted
$('.numbers').after(function() {
    if (parseInt($(this).text(), 10) > 1) return ('<span>Bigger than one.</span>');
});

You had a few problems.

First, you need to refer to $(this) instead of this to use a jQuery function on it.

Second, use .text() to get the value of the element as text.

The parseInt(value, 10) is just a good idea when comparing text to a number in javascript.

link|improve this answer
+1 for faster typing and adding the radix into parseInt (as he goes and edits his own answer to add the radix in...) :) – Ian Oxley Apr 6 '11 at 16:17
feedback

this.value() isn't a function - there's the this.value property or the jQuery.val() function. But, in this case you've got a <span> tag which doesn't have a value, so you'd be better off using jQuery.text() instead. Using this you could change your code to:

$('.numbers').after(function() {
    if (parseInt($(this).text(), 10) > 1) return ('<span>Bigger than one.</span>');
});
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.