Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // This script grab only pages available on the page you are located currently, few improvements can be implemented + save to file optional
- function ZoneH()
- {
- var ZoneH_Array = document.getElementsByTagName('td');
- for (let i = 1; i < ZoneH_Array.length; i++) {
- var result = document.getElementsByTagName('tr')[i].getElementsByTagName('td')[7].innerHTML;
- console.log(result);
- }
- }
- ZoneH();
Add Comment
Please, Sign In to add comment