Skip to content

Instantly share code, notes, and snippets.

@timwis
Created July 22, 2016 23:45
Show Gist options
  • Save timwis/3f3a92e12cf663ba5de2d16c940ff4f0 to your computer and use it in GitHub Desktop.
Save timwis/3f3a92e12cf663ba5de2d16c940ff4f0 to your computer and use it in GitHub Desktop.
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