Advanced Invoice MakerAdvanced Invoice Maker
`;const blob = new Blob([invoiceHtml], { type: 'text/html' });
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'invoice.html';
a.click();
URL.revokeObjectURL(url);
}