Hi
I have an invoice application. Can anyone tell me how to send the div through email as an attachment. Can we convert or export the div to pdf
thanks
Fareeda Hussain
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Lucky LaxmanPosted May 30, 2015, 5:19 AM
This is a Pringting
This is a Pringting
This is a Pringting
var divContents = $("#Printdiv").html();
var printWindow = window.open('', '', 'height=400,width=800');
printWindow.document.write('
printWindow.document.write('');
printWindow.document.write(divContents);
printWindow.document.write('');
printWindow.document.close();
printWindow.print();
});
Nanhe SiddiquePosted May 30, 2015, 4:22 AM