I dynamically add this
$(ele).on("mouseover")
when user has mouse over the element, but it seems that mouseover
event triggers only when I reenter element.
Here is example in jsFiddle (Click on <div>
to add event listener)
How can I achieve this without manually triggering .mouseover()
?