티스토리 뷰

function print_area() {
   var W=document.documentElement.clientWidth; if(!W){W=document.body.clientWidth;}
   var H=document.documentElement.clientHeight; if(!H){H=document.body.clientHeight;}

   var features = "menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,width=" + W + ",height=" + H + ",left=0,top=0";
   var PrintPage = window.open("about:blank","tmp_print",features);
   PrintPage.document.open();
   PrintPage.document.write("<html><head><title></title></head><body>" + document.getElementById("printThis").innerHTML + "</body></html>");
   PrintPage.document.close();

   PrintPage.print();
   PrintPage.close();
}


< div id="printThis">내용</div> 

Total
Today
Yesterday
최근에 올라온 글
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31