Skip to content

Instantly share code, notes, and snippets.

@cave2006
Created June 13, 2019 01:52
Show Gist options
  • Save cave2006/b407adc9d63621b9b1fd0f10a18ec03e to your computer and use it in GitHub Desktop.
Save cave2006/b407adc9d63621b9b1fd0f10a18ec03e to your computer and use it in GitHub Desktop.
Скрипт вывода на печать нужного блока
<script>
jQuery(function($){
$('#print').click(function(){
var printing_css='<style media=print>#to_print {display: block}</style>';
var html_to_print=printing_css+$('#to_print').html();
var iframe=$('<iframe id="print_frame">');
$('body').append(iframe);
var doc = $('#print_frame')[0].contentDocument || $('#print_frame')[0].contentWindow.document;
var win = $('#print_frame')[0].contentWindow || $('#print_frame')[0];
doc.getElementsByTagName('body')[0].innerHTML=html_to_print;
win.print();
$('iframe').remove();
});
});
</script>
<style>#to_print {display:none;}</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment