Transaction Receipt
Transaction Type
Credit Card
Amount
$
Credit Card Surcharge
$
`)
newWin.document.write(div.outerHTML);
newWin.document.getElementById("make-another-payment-container").style.display = "none";
newWin.document.getElementById("receipt_email_container").style.flex = "100%";
newWin.document.getElementById("receipt_email_container").style.maxWidth = "100%";
let isChrome = /Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor);
setTimeout(() => {
isChrome ? newWin.document.execCommand('print') : newWin.print() ;
newWin.close();
}, 50);
}
function redirectToHome() {
window.location.href = window.location.href.split('?')[0];
}
function RedirectToAuth() {
window.location.href = window.location.origin + window.location.pathname;
}