Skip to content

Instantly share code, notes, and snippets.

@moyashi
Last active December 6, 2022 15:25
Show Gist options
  • Save moyashi/09eeb35e858941c63ed4f3fa47739823 to your computer and use it in GitHub Desktop.
Save moyashi/09eeb35e858941c63ed4f3fa47739823 to your computer and use it in GitHub Desktop.
$buf = "";
document.querySelectorAll("a[href^='/explore/tags/'").forEach(
function(currentValue, currentIndex, listObj) {
$buf = $buf + currentValue.text + " ";
}
);
prompt("", $buf);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment