ajax 이후 hover 이벤트
2021. 12. 14. 00:09ㆍjavascript
$(document).on({
mouseenter: function () {
$(this).addClass('border-primary');
$(this).addClass('border-2');
$(this).addClass('fw-bold');
},
mouseleave: function () {
$(this).removeClass('border-primary');
$(this).removeClass('border-2');
$(this).removeClass('fw-bold');
}
}, '.sideNavDiv');
'javascript' 카테고리의 다른 글
| 최대값, 최소값 (0) | 2021.12.30 |
|---|---|
| 창 크기, 모니터 크기 (0) | 2021.12.30 |
| ready & onload (0) | 2021.12.12 |
| [JS] 현재 날짜, 시간 포맷 (YYYY-MM-DD hh:mm:ss) (0) | 2021.11.25 |
| Uncaught TypeError: is not a function (0) | 2021.11.15 |