Evento Hover JavaScript
element.addEventListener('mouseover',someFunction);
Successful Sandpiper
element.addEventListener('mouseover',someFunction);
<div id="mydiv">foo</div>
<script>
document.getElementById("mydiv").onmouseover = function()
{
this.style.backgroundColor = "blue";
}
</script>
element.onmouseover = function() {
//Hovering
}
<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>
// You can use jQuery
$("p").hover(function(){
$(this).css("background-color", "yellow");
}, function(){
$(this).css("background-color", "pink");
});
if(element.style.className.hovered === true) {do something}