Animate numbers

by shapeshifta

HTML

<div id="el"></div>

JavaScript

$({ someValue: 0 }).animate({
    someValue: 110
}, 
{
    duration: 1000,
    // can be anything     
    easing: 'swing',
    step: function () {
        // called on every step         
        // Update the element's text with rounded-up value:      
        $('#el').text(Math.ceil(this.someValue) + "%");
    }
});