Created
December 29, 2024 22:39
-
-
Save hilmanski/2a96bac68b6b6f91933dc98899c50c01 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
const rows = document.querySelectorAll("table tr"); | |
const firstTdValues = []; | |
rows.forEach(row => { | |
const firstTd = row.querySelector("td:first-child"); | |
if (firstTd) { | |
firstTdValues.push(firstTd.textContent.trim()); | |
} | |
}); | |
console.log(firstTdValues); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment