티스토리 뷰

$(document).ready(function(){
    var today = new Date(),
        todayM = today.getMonth() + 1,
        todayD = today.getDate(),
        thisM = $('#thisMonth').text();

    if(thisM == todayM){
        $('.calendar-table td').each(function(){
            var thisD = $(this).find('em'),
                thisDcnt = thisD.text();

            if(thisDcnt == todayD){
                thisD.parents('td').addClass('today');
            }
        })
    }
})
공지사항