Add new hosting subscriptions to WooCommerce

Extracting domains from large Xero invoice

result = [];
jQuery('.x-grid3-row-table').each(function() {
    domain = jQuery(this).find("tr td:nth-child(3)").text();
    if ( domain.indexOf('Domain') > -1 ) {
      result.push( domain.replace("Domain: ", "") );
    }
    
});
result.sort();
console.log( result.join(" ") );