Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         var recibo = $('#recibo-' + venta.id).html();
  2.         var mywindow = window.open('', 'my div', 'height=400,width=600');
  3.  
  4.         mywindow.document.write('<html><head><title></title>');
  5.         mywindow.document.write('<link rel="stylesheet" media="screen" href="/assets/css/bootstrap.min.css">');
  6.         mywindow.document.write('</head><body>');
  7.         mywindow.document.write(recibo);
  8.         mywindow.document.write('</body></html>');
  9.  
  10.         mywindow.document.close(); // necessary for IE >= 10
  11.         mywindow.focus(); // necessary for IE >= 10
  12.  
  13.         mywindow.print();
  14.         mywindow.close();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement