EVOLUTION-NINJA
Edit File: pkg_consignee.php
<div class="page-content-wrapper"> <div class="page-content"> <div class="row" style=" text-align: right;"> <button class="btn btn-success btn-lg" type="button" id="booking_print" style=" padding-top: 2px; padding-bottom: 3px; padding-left: 15px; padding-right: 15px; background: rgb(72,91,127); color: white; border: initial !important; font-size: 22px;">Print </button> <span class="close-right" ><a href="<?php echo base_url('packing_list/paking_list_details?prop_id=1');?>" style="font-size: 22px;border: 1px solid;padding-left: 15px;padding-right: 15px;background: rgb(72,91,127);color: white;padding-bottom: 7px;text-decoration:none;">Back</a></span></div> <table id="print_report" style="width:100%;"> <tr> <td style="width:50%;"></td> <td style="width:50%;"><textarea style="resize: none; width: 360px !important; height: 200px !important; border: none; font-size: 14px; font-weight: bold; font-family: times new roman;"><?php echo $fetch->consignee; ?></textarea></td> </tr> </table> </div> </div> <style> </style> <script> $(document).ready(function(){ $("#booking_print").click(function(){ $("textarea").css({"resize": "none"}); var divToPrint=document.getElementById("print_report"); newWin= window.open(""); newWin.document.write(divToPrint.outerHTML); newWin.print(); newWin.close(); }); }); </script>