tags:

views:

540

answers:

6
+2  A: 

Well since you're using the jQuery cycle plugin, you can use those links as pagers per the Intermediate demo here.

Something like this using your menu:

$('.samples').cycle({ 
    pager:  '.menu_table' 
});

Made a slight edit in regards to the element reference on the cycle plugin (I had copied from the cycle plugin website but now it's specific to your cycle element which is called .samples)

jeerose
A: 

Here is an example:

$('#goto2').click(function() {  
  $('#s1').cycle(1);  
  return false;
});

So for the first link on your page, it would be:

$('#s1 a:first').click(function() {  
  $('.samples').cycle(0);  
  return false;
});
JAKEtheJAB
A: 
dg
+1  A: 

To answer your questions, here is the full context:

<html>
<head>
<script type="text/javascript">
  $(document).ready(function() {
    $('.samples').cycle({
      fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
    });
  });

  function setSlide(index) {
    $('.samples').cycle(index);
  }
</script>
</head>
...
...
<a href="javascript:setSlide(0)">Blended Collage #1</a><br />
<a href="javascript:setSlide(1)">Bordered Collage</a>
...
...
JAKEtheJAB
JAKE,<BR>It worked! Not that I doubted you. Thank you so much. I never would have figured that out. Please consider letting us create a photo collage for you!-dave
dg
Cool, glad to hear. Thanks for the offer, but I'll take a rain check on the collage. lol
JAKEtheJAB
A: 

this works for me on my HTC EVO Android phone, but when I scroll down the page, then back up to the top where my silder is, all the indexes are screwed up.

Jesse
A: 

Thanks a lot man! your question helps me!! :)

NeoIndigo