Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.     $('body, html').scrollTop($(document).height());
  3.     $(".LikeLabel:contains('Мне нравится')").click();
  4. });
  5.  
  6. var refreshIntervalId = setInterval(getLikeCount, 1000);
  7.  
  8. function getLikeCount() {
  9.     var countes = $(".LikeLabel:contains('Мне нравится')").length;
  10.     if (countes === 0) {
  11.         var nextvalid = $(".PageNav nav a:contains('Вперёд >')").length;
  12.         if (nextvalid === 0) {
  13.             return false;
  14.         } {
  15.             $(".PageNav nav a:contains('Вперёд >')").attr('id', 'nextpages');
  16.             location.href = 'http://forum.arizona-rp.com/' + $('#nextpages').attr('href') + '';
  17.             clearInterval(refreshIntervalId);
  18.         }
  19.     } else {
  20.         return false;
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement