Hi I am trying to incorporate the code that I found on this jfiddle: http://jsfiddle.net/x2qk7/158/
Into my website but its not working.
Pasted from my actual page It looks like this:
<script type="text/javascript"> $(document).ready(function(){
$('a.next').click(function(){
$('.slide').animate({left:-720})
})
}); </script>
<style>.form-slides {width:100000px;} .slide {width:300px;float:left;left:0;position:relative;}</style>
<div class="form-slides">
<div class="slide">
<p>Lipsum blah blah blah</p>
<a href="#" class="next">Next</a>
</div>
<div class="slide">
<p>Lipsum blah blah blah</p>
<a href="#" class="next">Next</a>
</div>
<div class="slide">
<p>Lipsum blah blah blah</p>
<a href="#" class="next">Next</a>
</div> </div>
It seems to be exact, but its not working at all. Am I missing something?