Created
January 30, 2014 07:27
-
-
Save mattweg-zz/8704103 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Paste this into the chrome console when you are in site catalyst | |
//You should get any easily copied list of report suites | |
var w = window.open('', 'wnd');var rsuites = "Matt's Report Suite Export\n\nNAME, VALUE\n"; var list = document.getElementById('rsid_select_list'); var items = list.getElementsByTagName('li'); for(x = 0;x < items.length; x++) { rsuites = rsuites + items[x].getElementsByTagName('a')[0].getAttribute('title') + ", " + items[x].getElementsByTagName('a')[0].getAttribute('data-value') + "\n"; } rsuites + "\n\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment