- 정보공유
[JQUERY] ajax 로 불러오는 html 에 hover 처리를 해야할경우
ajax 로 불러오는 html 에 hover 처리를 해야할경우
$(document).ready(function(){
$(document).on({
mouseenter: function () {
$(this).find('.thumb').hide();
$(this).find('.thumb-hover').show();
},
mouseleave: function () {
$(this).find('.thumb').show();
$(this).find('.thumb-hover').hide();
}
}, '.list-product .list-grid a');
});