You are on page 1of 1

<script type="text/javascript">

$("#btnPrint").live("click", function () {
var divContents = $("#dvContainer").html();
var printWindow = window.open('', '', 'height=700,width=900');
printWindow.document.write('<html><head>');
printWindow.document.write('<link
href="../../Content/theme/bootstrap/css/bootstrap.min.css" rel="stylesheet"
type="text/css" />');

printWindow.document.write('</head><body >');
printWindow.document.write(divContents);
printWindow.document.write('</body></html>');
printWindow.document.close();
printWindow.print();

});

</script>

You might also like