Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2.     $(document).ready(function() {
  3.         $('a').each(function(i){
  4.             if($(this).attr('href').contains('?')){
  5.                 $(this).attr('href',$(this).attr('href')+'&token=TOKENTEST');
  6.             } else {
  7.                 $(this).attr('href',$(this).attr('href')+'token=TOKENTEST');
  8.             }
  9.         })
  10.     ;})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement