Created
February 1, 2021 10:33
-
-
Save ahmetgungor/5a41de7f4a939f6b0d2022fcf28acf3f to your computer and use it in GitHub Desktop.
Cpanel email listesi alma
This file contains 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
var rows = $("#accounts_table tbody tr"), | |
returnString = ""; | |
rows.each(function(i, item){ | |
var tdList = []; | |
$(item).find('span.account-name').each(function(s,subItem){ | |
tdList.push($(subItem).text()); | |
}); | |
returnString += tdList + "\n"; | |
}); | |
console.log(returnString); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment