Skip to content

Instantly share code, notes, and snippets.

@itszechs
Created January 5, 2024 06:23
Show Gist options
  • Select an option

  • Save itszechs/91b4d18b5d3e32717cdde2faadb36c76 to your computer and use it in GitHub Desktop.

Select an option

Save itszechs/91b4d18b5d3e32717cdde2faadb36c76 to your computer and use it in GitHub Desktop.
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