Skip to content

Instantly share code, notes, and snippets.

@AgrawalAshishS
Created September 27, 2016 19:10
Show Gist options
  • Select an option

  • Save AgrawalAshishS/7b5efaf44431e5bdf7006a3675d019c6 to your computer and use it in GitHub Desktop.

Select an option

Save AgrawalAshishS/7b5efaf44431e5bdf7006a3675d019c6 to your computer and use it in GitHub Desktop.
create list of host entries from Route 53 page
jQuery(".GEHJJTKDMQ tr").each(function(){
var tr = this;
var name = jQuery(".GEHJJTKDIQE, .GEHJJTKDNHE", tr)
.map(function(){ return $(this).text(); })
.get()
.join(",")
console.log(name);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment