I have a that is populated with javascript after the initial page load. I\'m currently using .bind with mouseover and
.bind
mouseover
You can provide one or multiple event types separated by a space.
So hover equals mouseenter mouseleave.
hover
mouseenter mouseleave
This is my sugession:
$("#foo").on("mouseenter mouseleave", function() { // do some stuff });