Skip to content

Instantly share code, notes, and snippets.

@bitboxx
Last active February 27, 2017 08:55
Show Gist options
  • Save bitboxx/673badf889cc556b45cbe5528ea94d7a to your computer and use it in GitHub Desktop.
Save bitboxx/673badf889cc556b45cbe5528ea94d7a to your computer and use it in GitHub Desktop.
Copy list on a website to clipboard
// Get certain list from website and copy it to clipboard
window.copyListToClipboard = (selector, elementProperty, linePrefix = '') => {
let list = '';
document.querySelectorAll(selector).forEach(element => {
list += linePrefix + element.getAttribute(elementProperty) + '\n';
});
copy(list);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment