Is there a simple jQuery way to generate numbers using a .class
containing different numbers more and more increasing after a few seconds?
Example :
before :
<p class="number_vp">56</p>
<p class="number_vp">2</p>
after few seconds :
<p class="number_vp">58</p>
<p class="number_vp">10</p>
with different numbers, I would retrieve the value and add randomly to increase this value
– artSx May 14 '13 at 10:25