Created
August 10, 2020 08:31
-
-
Save toanalien/20eecd345589b8261f98fdad8b1350ee 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
// https://sensiblechinese.com/common-chinese-characters/ | |
// paste to Chrome console | |
cols = jQuery('.column-2') | |
characters = [] | |
for (i=1; i<cols.length; i++) { // skip table header | |
characters.append(jQuery(cols[i]).text())); | |
} | |
// print array to console | |
characters.join("\",\"") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment