I have a dynamic HTML content
<div id="parent">
<div class="child">
Hover Text
</div>
</div>
when I try to hover "hover text" inside child element with this code it doesn't work.
$("#parent").on('hover', '.child', function()
{
alert("Hello");
});
this code neither
$('#parent').on('hover', '.child', function(e) {
...
});
I use jq vs 1.10.2