Hi, I have a script which I’m trying to edit for a Featured Content Silder.
if (options.pause_on_hover) {
output.mouseenter(function() {
clearInterval( timer );
The above basically pauses the slider when the mouse hovers over a particular slide. I can get this to work, however I also need to write something similar as I also want the corresponding tab to do the same. In the original code, the above was used to pause the tab only. So rather than ‘output’, ‘tabs’ was used instead.
Hope this makes sense.
Thanks for any help you can give me.