mouseenter mouseleave jquery code example
Example 1: mousemove jquery
$( "#target" ).mousemove(function( event ) {
});
Example 2: on mouse not over jquiery
$( "#other" ).click(function() {
$( "#outer" ).mouseleave();
});
Example 3: mouseleave to original image
function createHover (that) {
var original = document.getElementsByClassName("image_left");
that.addEventListener('mouseover', function() {
var src = that.getAttribute('data-src');
if (src) {
imageContainer.src = src;
}
});
that.addEventListener('mouseleave', function() {
});
}
initImageHover('li.one > a');
});