Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <div class="article-content">
  2.  
  3. <div class="title">
  4.  
  5. <a href="#" id="next">next</a>
  6.  
  7. <h2>Title1</h2>
  8.  
  9. </div>
  10.  
  11. some text goes here
  12.  
  13. <div class="title">
  14.  
  15. <a href="#" id="next">next</a>
  16. <h2>Title2</h2>
  17.  
  18. </div>
  19.  
  20. <div class="title">
  21.  
  22. <a href="#" id="next">next</a>
  23. <h2>Title3</h2>
  24.  
  25. </div>
  26.  
  27. </div>
  28.  
  29. $("#next").click(function() {
  30.  
  31. var next;
  32.  
  33. next = $(this).parent().next().find(".title");
  34. $('html,body').animate({ scrollTop: next.offset().top
  35. }, 1000);
  36.  
  37. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement