Thursday, February 14, 2013

Code for removing the print button while printing using Iframe

Hi,
 This is the code for Print Invoice for removing the Print Button Using Iframe.

function getPrintInvoiceContent(){
            document.getElementById("IframeprintInvoiceDetails").contentWindow.document.body.innerHTML= document.getElementById("printInvoiceDetails").innerHTML;
            frames["IframeprintInvoiceDetails"].print();
}

Note: Where “IframeprintInvoiceDetails” is the ID of the Iframe and “printInvoiceDetails” is the ID of the Body content to be Printed.

No comments: