Advertisement
Guest User

Untitled

a guest
Oct 20th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1.  
  2. var links = document.querySelectorAll('a');
  3. const replaceLinks = () => {
  4. for(var i = 0; i < links.length; i++) {
  5. if(links[i].href.indexOf('details.php') > -1) {
  6. links[i].href = links[i].href.replace(/details.php/g, 'download.php');
  7. }
  8. }
  9. };
  10.  
  11. replaceLinks();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement