Skip to content

Instantly share code, notes, and snippets.

@arshinalbab
Created December 13, 2020 14:07
Show Gist options
  • Select an option

  • Save arshinalbab/6c44d7e16cdd2373510203fc3aa13f55 to your computer and use it in GitHub Desktop.

Select an option

Save arshinalbab/6c44d7e16cdd2373510203fc3aa13f55 to your computer and use it in GitHub Desktop.
Jquery get data inside table
$("table > tbody > tr").each(function () {
console.log($(this).find('td').eq(0).text() + " " + $(this).find('td').eq(1).text() );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment