Class jquery hover function are working after scroll.
$(document).ready(function() {
    $('img').hover(function(){
        alert('hello');
    },function(){
        alert('hello not');
    });
});
on hovering images loaded on first site are showing alert hello but after scroll images load(lazzy loading). On hovering those images alert is not showing.
 
     
     
    