Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 13th, 2012  |  syntax: JavaScript  |  size: 0.59 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. /*
  2. Outputs the raids url links from your raid links tab.
  3. You can filter the tab and run the script to get the last <number> of raids
  4.  
  5. Needs:
  6. SRDotDX FPX DOTD script plugin
  7.  
  8. Copy and paste the script into the browser console from Chrome browser inspector, or firefox browser console.
  9.  
  10. To use, type:
  11. raw(10)
  12.  
  13. change the number to your desired, last number of raids from your raids tab.
  14. */
  15. var raw = function(num){$A($$('.raid_list_item:not(hidden) .raid_list_item_head a.link').slice(-num)).each(function(item){console.log(window.location.href + item.attributes.getNamedItem('href').value)})}