Hi,
I'm using the jQuery Cycle Plugin (Great!) with divs, but I've got a problem:
U can only click the first link because the Plugin only reduces the opacity.
Is there any possibility to get the links working?
Thanks for help
Till
PS: Sry about my English, I'm a 13-years-old student from Germany...
- $('#slides').cycle({
- prev: '#prev',
- next: '#next',
- speed: 500
- });
- <div id="slides">
- <div class="img">
- <img src="xyz.jpg" />
- <a href="download/xyz.full.jpg">Download</a>
- </div>
- <div class="img">
- <img src="xyz.jpg" />
- <a href="download/xyz.full.jpg">Download</a>
- </div>
- <div class="img">
- <img src="xyz.jpg" />
- <a href="download/xyz.full.jpg">Download</a>
- </div>
- </div>