Last active
August 29, 2015 13:57
-
-
Save liddiard/9747138 to your computer and use it in GitHub Desktop.
Extract a list of domain names from a BulkRegister page with jQuery.
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
var domains = ""; | |
$('#ctl00_Main_ctl01_pnlResults tr td:nth-child(2) a').each(function(){ | |
domains += $(this).text() + '\n'; | |
}); | |
console.log(domains); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment