Returns Form

Shopping Cart
Scroll to Top

This website uses cookies to ensure you get the best experience on our website.

document.addEventListener('DOMContentLoaded', function() { var printButton = document.getElementById('printForm'); if (printButton) { printButton.addEventListener('click', function() { var printContents = document.querySelector('.elementor-form').innerHTML; var printWindow = window.open('', '_blank', 'width=800,height=600'); printWindow.document.write(` Print Form ${printContents} `); printWindow.document.close(); printWindow.focus(); printWindow.print(); printWindow.close(); }); } else { console.log("Print button not found."); } });