I am trying to add a simple delay to the mouse event and the occurrence of difficulties. (Still learning!)
This allows me to display a popup after a delay, but it shows all of them at the same time:
onmouseover='setTimeout(function() { $(\".skinnyPopup\").show(); }, 600)'
and this works to show only the popup that I want without delay:
onmouseover='$(this).children(\".skinnyPopup\").show()'
but the combination doesn't matter:
onmouseover='setTimeout(function() { $(this).children(\".skinnyPopup\").show(); }, 600)'
Any help would be greatly appreciated. Thanks!
source share