Skip to content

Instantly share code, notes, and snippets.

@liddiard
Last active August 29, 2015 13:57
Show Gist options
  • Save liddiard/9747138 to your computer and use it in GitHub Desktop.
Save liddiard/9747138 to your computer and use it in GitHub Desktop.
Extract a list of domain names from a BulkRegister page with jQuery.
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