rating.js 1.21 KB
jQuery(function($) {
    $('#rating_1').rating({
    image: '/images/teamitem/stars.png',
        readOnly: true,
    callback: function(responce){
        this.vote_success.fadeOut(2000);
    }
});

    $('#rating_2').rating({
        image: '/images/teamitem/stars.png',
        readOnly: true,
        callback: function(responce){
            this.vote_success.fadeOut(2000);
        }
    });
    $('#rating_3').rating({
        image: '/images/teamitem/stars.png',
        readOnly: true,
        callback: function(responce){
            this.vote_success.fadeOut(2000);
        }
    });
    $('#rating_4').rating({
        image: '/images/teamitem/stars.png',
        readOnly: true,
        callback: function(responce){
            this.vote_success.fadeOut(2000);
        }
    });
    $('#rating_5').rating({
        image: '/images/teamitem/stars.png',
        readOnly: true,
        callback: function(responce){
            this.vote_success.fadeOut(2000);
        }
    });
    $('#rating_6').rating({
        image: '/images/teamitem/stars.png',
        readOnly: true,
        callback: function(responce){
            this.vote_success.fadeOut(2000);
        }
    });
});