> Hi there, I've got some next/prev links going with my jquery cycle and
> I'm trying to also include the div .folio_cycle to be clickable for
> next image; can someone help me with that reference?
>
> http://rejectedrobot.com/portfolio/new.html

This should work:

$('.folio_cycle').each(function() {
     var p = this.parentNode;
     $(this).cycle({
         speed:  200,
         timeout: 0,
         next:   $('a.next,.folio_cycle', p),
         prev:   $('a.prev', p)
     });
 });

Reply via email to