jQuery: Counter, Tricky problem with effects for brainy people.
- by Marius
Hello there!
I made this counter that I think is cool because it only makes visible changes to the numbers being changed between each time it is triggered.
This is the code
// counter
$('a').click(function(){
var u = '';
var newStr = '';
$('.counter').each(function(){
var len = $(this).children('span').length;
…