My problem is that
- I want to print content inside scroll in horizontal and vertical directions

<button class="printtable">Print</button>
<div id="applicationtableDiv">
<table>
</table>
</div>
<script type="text/ecmascript" src="<?php echo base_url() ?>js/print.js"></script>
<script>
jQuery(document).ready(function($) {
$('body').on('click', '.printtable', function(event) {
event.preventDefault();
$('#applicationtableDiv>table').print();
});
});
</script>
I use this plugin
click here
This plugin works for me, but I want to print the contents inside scroll x and y
Printing Records

source
share