i have this
13
and I want to increment this number by +1 when I click a button
How can I do that
$('btn').click(function() { var el = parseInt($('.likes').text()); $('.likes').text(el+1); });
http://jsfiddle.net/jg5GA/