The 'lazyload' event does not seem to be firing for video elements. The class "lazy-loaded" is not added to any of my videos and the following code does nothing;
$('video').on('lazyload', function(e){ console.log('load ' + e.target);});
Yet, when I do the same for images it works fine. Is this a known issue?