vote up 0 vote down star
<span id="shortfall" style="color:black">$row[shortfall]</span>

How to increase $row[shortfall] to $row[shortfall]+1 with JQuery?

flag

57% accept rate

2 Answers

vote up 0 vote down check

You need parseInt to handle strings as numbers.

$("#shortfall").text(parseInt($("#shortfall").text()) + 1);
link|flag
1  
That could cause some confusion if the initial value is, say, "077": parseInt("077")+1 = 64. – Matthew Wilson Nov 6 at 14:30
Haha good one. But who uses octals nowadays? =) – BalusC Nov 6 at 14:31
How did you determine it was an integer? What if it is a decimal? parseInt( "0.34" ) = 0 – tvanfosson Nov 6 at 14:33
@tvanfosson: Then just use parseDouble? =) I however do not expect that the values are all doubles if he ask to increment the value with 1, so I consider that comment very nitpicky. – BalusC Nov 6 at 14:36
@BalusC: No-one deliberately uses octals. But people could accidentally use them. – Matthew Wilson Nov 6 at 15:35
vote up 1 vote down

By the time it gets to the browser, your expression will have been evaluated and turned into a number. To use jQuery you'd simply get the text value of the span, convert it to a number, then replace the text value. You will need to convert the value to a number before doing the addition or it will do string concatenation.

$("#shortfall").each( function() {
    $(this).text( Number($(this).text()) + 1 );
});

Updated: I'm using each to show how you would do this using a generic selector that might accept a collection of inputs. In your case, if you know it matches exactly one element, you might optimize it at the risk of having to rewrite it if you wanted the code to apply to multiple elements.

var span = $("#shortfall");
span.text( Number( span.text() ) + 1 );

Updated: need to use text() (or html()) since the element is a SPAN, not an input.

link|flag
what is this each() function for? There's only one of it. – BalusC Nov 6 at 14:28
I think the value can only be obtained by $('#shortfall).attr('value'); – Steven Nov 6 at 14:29
@Steven: no, by text(). It is not an attribute, but just the body. – BalusC Nov 6 at 14:30
@BalusC - it's more general to assume that the selector results in a collection. If it does, then you don't want to use text which will aggregate the innerText of all the matched elements. Using the each function allows the code to still work if the selector is changed to match multiple elements. – tvanfosson Nov 6 at 14:37
@tvanfosson: The problem lies somewhere else if the ID (yes, the identifier) selector returns more than one element. – BalusC Nov 6 at 14:38
show 2 more comments

Your Answer

Get an OpenID
or

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