trigger hover event javascript code example
Example 1: hover jquery
$( "div.enterleave" )
.mouseenter(function() {
n += 1;
$( this ).find( "span" ).text( "mouse enter x " + n );
})
.mouseleave(function() {
$( this ).find( "span" ).text( "mouse leave" );
});
Example 2: get hover element js
let test = document.getElementById("test");
test.addEventListener("mouseenter", function( event ) {
event.target.style.color = "purple";
setTimeout(function() {
event.target.style.color = "";
}, 500);
}, false);
Example 3: trigger hover event javascript
$("#id").mouseover();