mouseover js code example
Example 1: addeventlistener hover js
let test = document.getElementById("test");
test.addEventListener("mouseover", function( event ) {
alert("mouse over test!")
, false);
Example 2: javascript hover event
element.onmouseover = function() {
//Hovering
}
Example 3: get hover element js
let test = document.getElementById("test");
// This handler will be executed only once when the cursor
// moves over the unordered list
test.addEventListener("mouseenter", function( event ) {
// highlight the mouseenter target
event.target.style.color = "purple";
// reset the color after a short delay
setTimeout(function() {
event.target.style.color = "";
}, 500);
}, false);
Example 4: javascript on hover
<img onmouseover="enlargeImage(this)" border="0" src="smiley.gif" alt="Smiley" width="32" height="32">
<script>
function enlargeImage(x) {
x.style.height = "64px";
x.style.width = "64px";
}
</script>
Example 5: on mouseover in javascript
The mouseover event is fired at an Element when a pointing device
(such as a mouse or trackpad) is used to move the cursor onto the
element or one of its child elements.