In jQuery, is it possible for an element to act like it is mouseovered automatically when the page is loading, when it is not really mouseovered? I mean, I won\'t put my poi
Use .trigger() to trigger an event.
$('#foo').trigger('mouseover');