Created
July 22, 2016 23:45
-
-
Save timwis/3f3a92e12cf663ba5de2d16c940ff4f0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var list = document.querySelector('#filter-list ul') | |
var listItems = Array.from(list.children) | |
var depts = listItems.map((li) => { | |
var link = li.querySelector('.content-department') | |
return link.innerText + "\t" + link.getAttribute('href') | |
}) | |
copy(depts.join("\n")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment