Skip to content

Instantly share code, notes, and snippets.

@ahmetgungor
Created February 1, 2021 10:33
Show Gist options
  • Save ahmetgungor/5a41de7f4a939f6b0d2022fcf28acf3f to your computer and use it in GitHub Desktop.
Save ahmetgungor/5a41de7f4a939f6b0d2022fcf28acf3f to your computer and use it in GitHub Desktop.
Cpanel email listesi alma
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