Sorry if subject isn’t very descriptive.
Say for example I have this:
// lets update the count
<div class='user-count'>3</div>
$('.user-count')val().text(x + 1);
so that it becomes:
<div class='user-count'>4</div>
thx
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Fetch the current value with
text(), parse the value as an integer, add one, and then set again thetext():DEMO.