Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

please I have the following markup :

<div class="item"> 1 a </div>
<div class="item"> 2 b </div>
<div class="item"> 3 c </div>

After a click on a button, I want to increase using jQuery the value of the three elements by 2 and get :

<div class="item"> 3 a </div>
<div class="item"> 4 b </div>
<div class="item"> 5 c </div>

Please any help ?

Thanks a lot

share|improve this question

3 Answers

up vote 3 down vote accepted

You may do this in your button's event handler :

$('.item').each(function(){
   $(this).html(
      $(this).html().replace(/(\d+)/, function(v){return parseInt(v,10)+1})
   );
});

This increments the first number in your items (if you want to increment any number, just change the regex to /(\d+)/g).

Demonstration

share|improve this answer
Thank you so much this was helpful !! – Sami El Hilali Nov 30 '12 at 15:37

You should modify your html like this:

<div class="item"> <span>1</span> product </div>
<div class="item"> <span>2</span> product </div>

And the your Javascript should be:

$('.yourbutton').click(function(){
    $( '.item' ).each(function(){
        var actual = parseInt( $(this).find( 'span' ).html() );
        $(this).find( 'span' ).html( actual + 1 );
    }); 
}); 
share|improve this answer

Look into the .appendTo class HERE

With .appendTo(), on the other hand, the content precedes the method, either as a selector expression or as markup created on the fly, and it is inserted into the target container.

share|improve this answer
How does this answer the question? – Julien Royer Nov 30 '12 at 15:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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