vote up -3 vote down star
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

flag

2  
which jQuery plugin? any associated code? please don't ask such incomplete questions. – Alec Smart Sep 3 at 6:56
visit this link for full code 122.165.56.88/jquery192.html – Arun Sep 3 at 7:39
-1 + close. Not a real question and does not help the community 1 bit – redsquare Sep 3 at 7:40

1 Answer

vote up 2 vote down check

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);
link|flag
while using that some images were gone any other reason – Arun Sep 3 at 7:05
@Arun is it a browser / css issue? try different browsers & turning off CSS to see if you can reproduce it. Any chance you have an example we can see? – TJB Sep 3 at 7:11
visit my code for better visual 122.165.56.88/jquery192.html – Arun Sep 3 at 7:39
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 Sep 3 at 7:53
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. – Arun Sep 3 at 8:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.