Skip to content

Instantly share code, notes, and snippets.

@arlm
Created December 12, 2023 12:16
Show Gist options
  • Save arlm/274d3bd3b9b1aff80fbd94dfd4945417 to your computer and use it in GitHub Desktop.
Save arlm/274d3bd3b9b1aff80fbd94dfd4945417 to your computer and use it in GitHub Desktop.
var links = [];
[].forEach.call(document.querySelectorAll("a[id^='game_']"), function(element) {
if (!!element) {
links.push(element.href);
}
});
links;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment