tags:

views:

86

answers:

1

can anyone know stop and restating slideshow created using jquery. the following code makes problem while random selection.

$('#left_actual').cycle('stop'); //slide show 1

$('#right_col').cycle('stop'); //slide show 2

$('#left_actual').cycle({ fx: 'all',

                       timeout: 6010,

                       startingSlide:slide_no // changing slide no


                });

$('#right_col').cycle({ fx:'scrollRight',

                       timeout: 6000,

                       startingSlide:slide_no, // changing slide no

                       before:button_chg
                });

find the code here

+2  A: 

The JQuery Cycle Plugin works great

http://malsup.com/jquery/cycle/

See the tutorials

Stop by calling:

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

Restart by calling:

$('#cycleElementId').cycle(0);
TJB
while using that some images were gone any other reason
Paniyar
TJB
visit my code for better visual http://122.165.56.88/jquery192.html
Paniyar
Runs fine for me, looks like you just have tabs, try adding more description to what you're trying to do and the problem you're having to the question.
TJB
i want to change slide no by clicking tab. But Some images are missing while selecting tab but not all times, it happens after an uncertain period.
Paniyar