Save them all! (firefox only) MutationObserver(function(event) { $(event[0].addedNodes[0]).mouseover(); }).observe($('body')[0], {childList: true}); $('img').mouseover();
Much cooler than mine. I just ran $('img').each(function() { $(this).mouseover(); }); every few seconds. Something cool should have happened.
setInterval( function() {$('img').trigger('mouseenter'); }, 100 );
(probably burning up my cpu)