Re: [jQuery] Re: jquery.cycle /// Next function in the next button and in the pictures

2009-12-21 Thread brian
2009/12/21 Pedro Gonçalves pedrom...@gmail.com: If I assign the next id to another element function only works once. check it out: http://www.pvxg.net/unplanned/ What I want to do is for the user to be able to cycle through the pictures by clicking on them. This is what Charlie was trying

[jQuery] Re: jquery.cycle /// Next function in the next button and in the pictures

2009-12-21 Thread Mike Alsup
next:'#next', next:'#next2' Change that to: next: '#next,#pics' The 'next' option let's you specify a jQuery selector string. So you can have as many elements as you want trigger the transition to the next slide. Mike