Skip to content

Instantly share code, notes, and snippets.

@ZeroOne3010
Created March 25, 2019 20:45
Show Gist options
  • Select an option

  • Save ZeroOne3010/aa5d2e980d33bc3a9476f34f0923bab6 to your computer and use it in GitHub Desktop.

Select an option

Save ZeroOne3010/aa5d2e980d33bc3a9476f34f0923bab6 to your computer and use it in GitHub Desktop.
Array.from(document.getElementsByTagName('tr'))
.filter(e => e.getAttribute('bgcolor') == '#FFFFBB' || e.getAttribute('bgcolor') == '#FFFFDD')
.map(e => ({fileName: e.children[0].innerText, fileSize: e.children[1].innerText, publishDate: e.children[2].innerText, description: e.children[3].innerText}))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment