Advertisement
Guest User

skip calender on URL prefix table (draft 2023-02-18)

a guest
Feb 18th, 2023
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.21 KB | Source Code | 0 0
  1. var table=document.getElementById("resultsUrl");
  2. var URLs=table.getElementsByTagName("a");
  3. for (var count=0; count < URLs.length; count++) {
  4.     URLs[count].href = URLs[count].href.replace("/web/*/","/web/2/")
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement