I'm using mouseenter in jQuery with a previous/next button. What I'm doing is clicking the next button to go to the next page. I then have to move my mouse just slightly to trigger the 'mouseenter' piece to show my button again. I want to eliminate that slight movement to show the button. Is there a better way to do this?
My code is below:
$('.rsSlide, .rsArrow').on('mouseenter', function() {
$('.rsArrow').removeClass('rsHidden');
});