well the title matches what im in search for but to narrow it down ;),
im look for a numeric counter to add to my webpage, i wish the numbers to stretch to a unlimited value, adding numeric data from a table add to the counter without reset the counter by too 0.
would be entirely grateful for anyone that can help :)
<script>
('.myClassAbleToAddOnCounter').bind('click', function(){
var currentCount = parseInt($('#myCounterTotal').html());
var countToAdd = parseInt($(this).html());
('#myCounterTotal').html( currentCount + countToAdd );
});</script>