[ Web 관련 ]/jQuery
jquery 특정 테이블의 row에 마우스 오버시 색상 변경
BIZLAB
2021. 2. 17. 23:17
$(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" );
});
});