$(document).ready(function () {
$('#btn_print').click(function () {
var tbl = $('#tbl_printbox').html();
var w = window.open('', 'pactrak', 'width:1000,height:500');
w.document.write(tbl);
w.print();
return false;
});
});
this is code which will print div page.when i close print pop window in chrome tab is dead