Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. $(".list").fadeOut(300, function() {
  2. $(".list").scrollTop(newPosition);
  3. $(".list").fadeIn(300);
  4. });
  5.  
  6. $(".list").fadeOut(300, function() {
  7. $(".list").fadeIn(300);
  8. }).delay(300).scrollTop(newPosition);
  9.  
  10. $(".list").fadeOut(300, function() {
  11. $(".list").text("something").fadeIn(300);
  12. });
  13.  
  14. $(".list").fadeOut(300, function() {
  15. $(".list").scrollTop(newPosition).fadeIn(300);
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement