Created
January 5, 2024 06:23
-
-
Save itszechs/91b4d18b5d3e32717cdde2faadb36c76 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 rows = Array.from(document.querySelectorAll('.myTableProxy tr')); | |
| var output = ''; | |
| rows.slice(1).forEach((row, index) => { | |
| var value = row.querySelector('td:first-child'); | |
| if (value) { | |
| output += `${value.textContent.trim()}\n`; | |
| } | |
| }); | |
| console.log(output); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment