My solution was to show/hide one of 2 cycles, depending on which one i needed, using .css('display', 'none') and .fadeIn. Once it was hidden i stopped the cycle i hide and use .fadeIn to show the one i want. Then it is started. Both cycles use the same pager, next, and prev options.
The pager only works 100% on the initial document.ready creation of the cycle. After switching to another cycle the indicators are the only thing that work. The indicators might not work if the cycles don't have the same number of elements. They aren't part of the start for .click event of my cycle selection. On Aug 14, 9:24 am, Z-Ender <fing...@gmail.com> wrote: > I define a cycle in document.ready as per usual. In my cycle I have > different sets of images that i want to cycle through and only want > certain ones to cycle as selected using the slideExpr option. Is > there a way to change this option from: > slideExpr: 'a' > to: > slideExpr: 'b' > > another alternative i've considered is to make a cycle of cycles. > Does anyone have an example of that?