I have a <ul>
that is populated with javascript after the initial page load. I’m currently using .bind
with mouseover
and mouseout
.
The project just updated to jQuery 1.7 so I have the option to use .on
, but I can’t seem to get it to work with hover
. Is it possible to use .on
with hover
?
EDIT: The elements I’m binding to are loaded with javascript after the document loads. That’s why I’m using on
and not just hover
.