Created
September 27, 2016 19:10
-
-
Save AgrawalAshishS/7b5efaf44431e5bdf7006a3675d019c6 to your computer and use it in GitHub Desktop.
create list of host entries from Route 53 page
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
| 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