1. navigate to https://www.factorio.com/
2. hover over the left side of the "Game > Starter Page" sub menu option
3. in one quick motion, move left (out of the submenu) and back right (to re-enter it)
4. enjoy the show
![Very Happy :D](./images/smilies/icon_e_biggrin.gif)
Seen on Firefox v69.0.1
Code: Select all
$(".custom-dropdown").hover(function() {
$(this).children("ul").stop(true, true).slideDown(300)
}, function() {
$(this).children("ul").stop(true, true).slideUp(300)
});
Code: Select all
$(".custom-dropdown").hover(function() {
$(this).children("ul").stop(true, true).slideDown(300)
}, function() {
$(this).children("ul").stop(true, true).slideUp(0)
});