In my html structure, I have one anchor tag element that has an attached hoverIntent anchor event.
$('a').hoverIntent(function(event){
Whenever I am on the anchor tag manually, it makes some kind of ajax call and returns data from the service and shows a popup.
I want to call mouseenter / hover / mousemove (all that a popup can bring out) from the code (without any manual action)
I tried basic jquery functions like
$('selector').trigger('hover') and
$('selector').trigger('mouseenter')
But nothing worked, is it possible to call the hover / mouseenter function without interrupting the user?
source
share