$(document).ready( function() {
$("#print").click(function(){
var printWindow = window.open("", "", "width=1000,height=500");
printWindow.document.write("<img src='http://www.smotor.com/kr/images/event/cupon1.jpg' style='width:100%;'>");
printWindow.document.write("<script> setTimeout(function(){ window.print(); }, 1000); </script>");
printWindow.document.close(); // IE >= 10에 필요
printWindow.focus();
return false;
});
});
'JAVA > Jquery' 카테고리의 다른 글
개체가 'assign' 속성이나 메서드를 지원하지 않습니다. 오류일떄 (0) | 2019.02.27 |
---|---|
jquery 천단위콤마 정규식 (0) | 2016.12.23 |
jquery js불러오기 (0) | 2016.12.21 |
jquery 쿠키조회 (0) | 2016.12.09 |
jquery 하루동안 팝업안보이게하는 쿠키함수 (0) | 2016.12.09 |