Project

General

Profile

1
$(function() {
2
    $('#randomize').click(function(e) {
3
        e.preventDefault();
4
        var rand = Math.floor((Math.random() * 100) + 1);
5

    
6
        altair_md.card_progress('#random_progress',rand,true);
7
        $('#progress_value').text(rand);
8

    
9
    });
10
});
(3-3/114)