$(document).ready(function () {
    $('.jsdate').each(function(){
        var old_date = $(this).text().split('-');
        $(this).text(old_date.join('.'));
    });
});
