Skip to content Skip to sidebar Skip to footer

Onmouseover Stop Slideshow Help

This is a function for a slideshow,onmouseover i want it to stop. Instead of stopping the slideshow onmouseover, it speeds up?? How can i correct this to stop onmouseover?

Solution 1:

I tried your code and the only problem I can see is on "onmouseout" there is an immediate transition to next slide. I would change that line like this:

object.onmouseout = function() {
    timeout = setTimeout(nextslide, 2500);
}

I disagree with Jared, "timeout" is defined there because you are using nested functions and inner functions have access to outer functions scope. You should never omit var when defining variables.

Post a Comment for "Onmouseover Stop Slideshow Help"