Just a quick question about hover events, How can I send a hover event to an element without the user hovering (programmatically).
example:
// Send hover event
$('#myDiv').sendHoverEvent();
// What to do once hovering
$('#myDiv').hover(console.log('hovering'));