Last active
November 18, 2018 01:17
-
-
Save shorti1996/d6ae592d50d75ba7e1df646b964248bc to your computer and use it in GitHub Desktop.
This file contains 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
var trs = $('.wikitable,.sortable tr').slice(2, -1); | |
trs.toArray().map((el, ind) => { return $('td', el).toArray().map((td, i) => { return td.innerText }) }) |
This file contains 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
$('tr td:first-child', $('.wikitable,.sortable')[1]).each(function () { | |
str += $(this).next().text() + "\n" | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment