
Untitled
By: a guest on
Jun 13th, 2012 | syntax:
JavaScript | size: 0.59 KB | hits: 20 | expires: Never
/*
Outputs the raids url links from your raid links tab.
You can filter the tab and run the script to get the last <number> of raids
Needs:
SRDotDX FPX DOTD script plugin
Copy and paste the script into the browser console from Chrome browser inspector, or firefox browser console.
To use, type:
raw(10)
change the number to your desired, last number of raids from your raids tab.
*/
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)})}