Guest User

Untitled

a guest
Apr 24th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /*
  2. Allow right clicking to open windows instead of:
  3. <a href="#" onclick="follow_link('CQXXXXXXXXXXXXXXXXXXXXXXXXEHDGDcAKBNAdBGDgDpErEwDXXXXXXXXXXXtEADTAk', 21803199); return false;">Diagnostic Quiz: Algebra</a>
  4. Tested on:
  5. Home page
  6. Assignment page
  7. */
  8. var patt = /\d+/g;
  9. for(var i = 0, l=document.links.length; i<l; i++) {
  10. if(document.links[i].onclick) {
  11. document.links[i].href = "/web/Student/Assignment-Responses/last?dep=" + patt.exec(document.links[i].onclick)
  12. }
  13. }
Add Comment
Please, Sign In to add comment