I'm making attempts to install multiple JCarousels onto my project.
http://natesmithen.com/wired/test/test.html
as you can see I've made attempts to add a second carousel however it seems to be blocking out the javascript, are there any specific variables I need to call out in my javascript in order for this to work, if so what are they?
Also is the a way I can get this carousel to scroll in reverse?
I've a plugin from the following site:
Nate,
You're not calling the second Carousel as you have a typo:
<div class="carsouel2">
Where as you call:
$(".carousel, .carousel2 ").jCarouselLite({
So make the div:
<div class="carousel2">
Try that.
Al