본문으로 바로가기

    $(document).ready(function(){

        // 특정 테이블의 row에 마우스 오버시 색상변경
        $( ".tb-list tbody tr" ).on( "mouseover", function() {
            $( this ).css( "background-color", "#f7f7f7" );
            //$( this).children("td").css( "cursor", "pointer" );
        });
        $( ".tb-list tbody tr" ).on( "mouseleave", function() {
            $( this ).css( "background-color", "white" );
        });

    });