Created
December 12, 2023 12:16
-
-
Save arlm/274d3bd3b9b1aff80fbd94dfd4945417 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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