Guest User

Untitled

a guest
Jan 14th, 2015
513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if( $('div#newEntriesCounter a') ) {
  2.     console.log('Nowe wpisy, odświeżam.');
  3.     $('div#newEntriesCounter a').click();
  4.  
  5. }
  6. $('p.more a').each(function(){
  7.     $(this).click();
  8. });
  9.  
  10. $('div.author > p.vC').each(function(){
  11.     var voted = $(this).find('b');
  12.  
  13.     if(!voted.hasClass('voted')) {
  14.         $(this).find('a.button.mikro.ajax').click();
  15.     }
  16.  
  17. });
Advertisement
Add Comment
Please, Sign In to add comment