Skip to content

Instantly share code, notes, and snippets.

@hilmanski
Created December 29, 2024 22:39
Show Gist options
  • Save hilmanski/2a96bac68b6b6f91933dc98899c50c01 to your computer and use it in GitHub Desktop.
Save hilmanski/2a96bac68b6b6f91933dc98899c50c01 to your computer and use it in GitHub Desktop.
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