Copy Source | Copy HTML
- function PrintIt(){
- var ua=navigator.userAgent;
- var ie=/MSIE/.test(ua);
- stext='';
- stext=document.getElementById("Printable").innerHTML;
- wnd=window.open("", "tinyWindow", 'statusbar=no,toolbar=no,scrollbars=yes,resizable=yes,width=630,height=900');
- wnd.document.write("<html>
<title>Печать страницы</title>
<head>
<link href=\"/style/print.css\"rel=\"stylesheet\"type=\"text/css\" media=\"all\"/></style>
</head>
<body onclick=\"window.close()\">
<div id=\"watermark-top\">начало листа</div>");
- wnd.document.write(stext);
- if (!ie){
- wnd.document.write("<div id=\"watermark-bottom\">конец листа</div><body></html>");
- wnd.print();
- }else{
- wnd.document.write("<script>window.onload=self.print();<\/script></body></html>");
- wnd.location.reload()
- }
- }
Copy Source | Copy HTML
- <div id="Printable">Контент для печати</div>
- <button onclick="PrintIt();">Печать</button>
Copy Source | Copy HTML
- $('#LocationMap').click(function(e){
- var x = e.pageX - this.offsetLeft;
- var y = e.pageY - this.offsetTop;
- $("input[name=location_x]").val(x);
- $("input[name=location_y]").val(y);
- $("#Flag").css({"margin-left": ""+x+"px"}).css({"margin-top": ""+y+"px"});
- });
-