Search code examples
javascriptcarouselforum

carousel javascript several times


I wanna use this carousel :
[http://codepen.io/ScottMarshall/pen/FwxpH][1]
on a forum, but when I repeat the code, it doesn't work well.
Can you help me ?

here, it's working, but the second container doesn't want and I don't want to change anything in the HTML...

JSFiddle


Solution

  • Here is working fiddle: http://jsfiddle.net/1x6251wc/2/

    This is the key change to get the context "Front" instead of all of them:

    var $front = $this.parent().find(".Front");
    

    It's a poorly written plugin, but this change should get it to work across multiple instances.