Jquery: is it possible to combine the events mouseover() and mouseout() with the hover() method? [migrated]

From what I've understood, hover() is a combination of mouseenter and mouseleave events. These events are different from mouseover and mouseout.

But is it possible to trigger mouseover and mouseout using hover()?

For Example: Change "hover(mouseenter, mouseleave)" to "hover(mouseover, mouseout)"