<div class="wrap">
        <div class="layer">
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
    <div class="post"></div>
        </div>
    </div>
<span class="next" style="cursor:pointer;"> (next div) </span>

jQuery with ScrollTo Plugin (http://demos.flesler.com/jquery/scrollTo/)

$('.next').click(function() {
    $(".wrap").scrollTo( $('.post').next(), 800, {margin:true} );
});

Demo : http://jsfiddle.net/UaGjs/8/

It doesnt work :( It work only 1st time

link|improve this question

73% accept rate
Because you always re-obtain a handle to the DOM elements with $('.post'), rather than re-using the object and calling .next() on it iteratively. – Lightness Races in Orbit May 4 '11 at 12:24
How can i fix it ? Plsss – l2aelba May 4 '11 at 12:27
feedback

3 Answers

up vote 6 down vote accepted

Working on Tomalak's answer you need to update the reference obj points to to the next element

http://jsfiddle.net/UaGjs/7/

var next;
$('.next').click(function() {
   if ( next === undefined ) {
     next = $('.post').next();
   } else {
      next = next.next();   
   }
   $(".wrap").scrollTo(next , 800, {margin:true} );
});

I've updated it with Prev but it can be improved to remove the duplication

http://jsfiddle.net/UaGjs/10/

I've noticed there is an occompanying plugin called Serial Scroll

Final edit

http://jsfiddle.net/nickywaites/UaGjs/13/

link|improve this answer
1  
Alright well Prev will need to be the previous of next and not the starting point... so you'll need to check if next is undefined too. I think we might be able to tidy that up a bit. – Nicky Waites May 4 '11 at 12:47
1  
I just mean there is a lot of duplicated code. Unfortunately lunch break is over here :) I've updated my answer to show you what I mean. – Nicky Waites May 4 '11 at 12:52
1  
I've included another edit with a bit more tidy code. – Nicky Waites May 4 '11 at 20:01
1  
Yeah I think that is a sizing issue with the css. I'm not really sure how to fix that. Maybe play around with the widths. – Nicky Waites May 5 '11 at 7:41
1  
Well thats good :) glad I could help – Nicky Waites May 5 '11 at 7:42
show 13 more comments
feedback

Because you always re-obtain a handle to the DOM elements with $('.post'), rather than re-using the object and calling .next() on it iteratively.

Try the following. It's untested and rough/ready, but should demonstrate how you can get around the scoping issue.

$(function() {
    var $obj = $('post');
    $('.next').click(function() {
        $('.wrap').scrollTo($obj.next(), 800, { margin:true });
    });
});
link|improve this answer
Dosent work :( but thanks – l2aelba May 4 '11 at 12:32
@l2aelba: It's a starting point. Some effort is required to mould it into a full solution that works for you. – Lightness Races in Orbit May 4 '11 at 12:34
feedback

Because you always re-obtain a handle to the DOM elements with $('.post'), rather than re-using the object and calling .next() on it iteratively.

Try the following. It's untested and rough/ready, but should demonstrate how you can get around the scoping issue.

link|improve this answer
add this $(function() { var $obj = $('post'); $('.next').click(function() { $('.wrap').scrollTo($obj.next(), 800, { margin:true }); }); }); – Mayank Jindal Mar 4 at 10:15
feedback

Your Answer

 
or
required, but never shown

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