WHM/cPanel – list all sites
var sites = '';
document.querySelectorAll("#listaccts > tbody > tr > td:nth-child(2) > a").forEach(function(el) {
sites += el.innerText.trim() + "\n";
});
console.log(sites);
var sites = '';
document.querySelectorAll("#listaccts > tbody > tr > td:nth-child(2) > a").forEach(function(el) {
sites += el.innerText.trim() + "\n";
});
console.log(sites);