Search code examples
javascriptjqueryjquery-pluginscycle

jquery cycle won't pause


For some reason, the pause command for Jquery cycle

$('#headerimgs').cycle('pause');

would not pause the image transitions and it should acording to this link

Can be tested here: http://jsfiddle.net/r7cUb/17/

any idea?


Solution

  • It seems you are using Cycle Light plugin, seems it doesn't have pause functionality, but it works fine if I use Cycle (all) plugin.

    DEMO: http://jsfiddle.net/r7cUb/21/

    Use this script

    <script src="http://malsup.github.com/jquery.cycle.all.js" type="text/javascript"></script>
    

    Instead of

    <script src="http://toniweb.us/gm/js/cycle.js" type="text/javascript"></script>