Some cells in my SlickGrid table have myClass class.
I added a tooltip for them like this:
$(".myClass").hover(// Mouse enters
function(e) {...},
// Mouse leaves
function() {...});
It works fine, but if I scroll the table to the bottom, and then scroll it back to the top, the tooltip does not appear anymore.
Can someone suggest any workaround ?
Thanks !
try:
if that doesn’t work, I’m guessing
.myClasshas been remove so try adding it again in every scrolls…either way, use the
live()