Skip to content

Instantly share code, notes, and snippets.

@theredpea
Created June 21, 2018 17:35
Show Gist options
  • Save theredpea/d32834039d475de8f47ba9e7f9285ca3 to your computer and use it in GitHub Desktop.
Save theredpea/d32834039d475de8f47ba9e7f9285ca3 to your computer and use it in GitHub Desktop.
var values = '';
$('.qmc-table-rows tr').each(function() {
values += (Array.from($(this).children('td').map(function(){ return $(this).text() })).join(',') +'\n')
});
console.log(values)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment