Mouse Out and Mouse In in Jquery / Add Class in Hover on Element
- سُلَيْمَان بْن دَاوُوْد

- Jul 31, 2021
- 1 min read
jQuery(".learnmorebiblock").hover(
function () {
jQuery(this).parent().prev().find('.hoverimg').addClass("learnmorebiblockh");
},
function () {
jQuery(this).parent().prev().find('.hoverimg').removeClass("learnmorebiblockh");
}
);
Comments