Skip to content

Instantly share code, notes, and snippets.

@stuartpb
Created April 10, 2014 22:23
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save stuartpb/10428701 to your computer and use it in GitHub Desktop.
Script for dumping / re-constructing multiple domain transfer list on NameSilo
// for https://www.namesilo.com/transfer_results.php
[].slice.call(document.querySelectorAll('input[name$="_transfer_auth_code"]'))
.map(function (el) {
return el.name.slice(0,-"_transfer_auth_code".length).replace(/_/g,'.')
+ ', ' + el.value})
.join('\n');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment