Mouseover v/s hover in Jquery

html, jquery

Solution

The hover() function is more high level - it's built to call functions to handle both a mouseenter event and a mouseleave event. It's very convenient for a UI element that has a hover and normal state (e.g. a button.)

The mouseover() function specifically binds to the mouseover event. It's best for situations where you only care when the mouse has crossed the border into an element and you don't really care what happens if it leaves. It's also the function to call when you want to trigger the event on some element.

EXPLANATION FROM: http://www.quora.com/jQuery/What-is-the-difference-between-the-hover-and-mouseover-functions

Problem

This question is info related. Im new to jquery. I am pretty experienced in HTML & CSS. What is the difference between Hover & Mouseover in Jquery. Ain't they both activated when hovering over an element.

Original source