Skip to content

Instantly share code, notes, and snippets.

@mrwweb
Created April 4, 2025 22:32
Show Gist options
  • Save mrwweb/17f11db03e219e3e9ae7e940550d3078 to your computer and use it in GitHub Desktop.
Save mrwweb/17f11db03e219e3e9ae7e940550d3078 to your computer and use it in GitHub Desktop.
Useful Console Snippets
// Get list of text in items for copy-pasting (where each item is in class ".thing")
console.log(Array.from(document.querySelectorAll('.thing')).map(t=>t.innerText).join("\n"));
// Get multiple strings into a table from a single element
console.table(Array.from(document.querySelectorAll('.thing')).map(t=>[p.getAttribute('title'),p.textContent]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment