Mouse Out and Mouse In in Jquery / Add Class in Hover on Element

Mouse Out and Mouse In in Jquery / Add Class in Hover on Element
jQuery(".learnmorebiblock").hover(
	  function () {
	    jQuery(this).parent().prev().find('.hoverimg').addClass("learnmorebiblockh");
	  },
	  function () {
	    jQuery(this).parent().prev().find('.hoverimg').removeClass("learnmorebiblockh");
	  }
	);

screen108

Leave a Reply

Your email address will not be published. Required fields are marked *