This file contains hidden or 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
// Visit http://www.loc.gov/standards/iso639-2/php/code_list.php | |
// Inject jQuery | |
// Open console and drop the following code in: | |
var countries = []; | |
$('table:eq(1) > tbody > tr').each(function() { | |
var inside = []; | |
$('td:eq(0),td:eq(1),td:eq(2)', this).each(function() { |
This file contains hidden or 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
// Visit http://www.iso.org/iso/home/standards/country_codes/updates_on_iso_3166.htm?show=tab3 | |
// Inject jQuery | |
// Open console and drop the following code in: | |
var countries = []; | |
$('.sortable > tbody > tr').each(function() { | |
var inside = []; | |
$('td:eq(0),td:eq(1)', this).each(function() { |