What is the correct way to invoke a mouseenter()
event... pause... mouseleave()
event?
Something like...
$('.some_item').each(function(index) {
$(this).mouseenter().delay(2000*index).mouseleave();
});
...but that doesn't work
P.s. I don't actually want to change the colour of anything, the fiddle is just an example. It must be mouseenter()
and mouseleave()