I have a content slider that automatically rotates, when you hover over it, it will stop rotating. My problem is this piece of code:
$$('.holder').addEvents({ mouseover: function(){ clearInterval(rollingon); }, mouseout: begin });
HTML:
<div id="fliptable"> <div class="holder"> <ul class="headliner" style="left: 0;"> <li class="headitem"> <div class="squared" style="opacity: 1;"> *content* </div> </li> </ul> </div> </div>
Fliptable expands the entire width of the browser. Thus, the various elements of the list change their opacity. Now my problem is hovering when I hover over items in a hidden list. In any case, I canโt have a fire on children?
Here is the JS fiddle: http://jsfiddle.net/AjWuL/
Neal carroll
source share