Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
this isn't exactly the same: your slide width is different. and how is it 'not working'? – kennypu Dec 21 '12 at 23:43

1 Answer

up vote 3 down vote accepted
  1. Is jQuery loaded?

  2. I don't know what's your goal but I think changing left in animation may help to go to the 3rd and further slide

    $('a.next').click(function(){             
        $('.slide').animate({left: "-=785px"})
    })
    

    Try this.

  3. To answer @Daniel Fein comment: yes there is a way and it's quite simple. Wrap it with a <div> and add overflow:hidden property to it. Just like this

share|improve this answer
you're right I didn't load jquery, silly me. But the next button only moves once, not every on every click of the next button. Any idea? – Daniel Fein Dec 21 '12 at 23:49
1  
Try my second option ;) this will work – veritas Dec 21 '12 at 23:50
2  
jsfiddle.net/x2qk7/162 this does not work for you ? – veritas Dec 21 '12 at 23:54
1  
@DanielFein I've edited my answer just jump there and check it out ;) – veritas Dec 22 '12 at 0:04
1  
Thanks happy holiday for you too ;) – veritas Dec 22 '12 at 0:17
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.