I'll start off by saying I'm not a programmer, I'm a designer. I have a limited knowledge of jQuery, though with enough tinkering I can often get what I need to work. So bear with me here.
I'm making a site (likely powered by Wordpress) that will have multiple sliders on a single page. I've managed to get Swipe JS to work just fine with one slider but I need some bit of a code that searches for all my slider DIVs and creates a new Swipe object for them.
The bit of code I used for one slider was "var slider = new Swipe(document.getElementById('slider'));" but that won't work for multiple sliders.
Structure of the HTML looks like this:
<div class="slider">
<ul>
<li style="display:block;"><img src="01.jpg"></li>
<li style="display:none;"><img src="02.jpg"></li>
<li style="display:none;"><img src="03.jpg"></li>
</ul>
<a class="prev" href="#" onclick='slider.prev();return false;'>prev</a>
<a class="next" href="#" onclick='slider.next();return false;'>next</a>
</div>
I'd appreciate any help you guys can give. Thanks!
