Ver Mensaje Individual
  #10 (permalink)  
Antiguo 16/01/2015, 06:11
Avatar de Eleazan
Eleazan
 
Fecha de Ingreso: abril-2008
Ubicación: Ibiza
Mensajes: 1.879
Antigüedad: 16 años
Puntos: 326
Respuesta: Imprimir desde php

¿Has probado así?

Código Javascript:
Ver original
  1. $('#imprimir').on('click',function(){
  2.     var divContents = $("div#divimagen").html();
  3.     var printWindow = window.open('', '', 'height=600,width=800');
  4.     printWindow.document.write($('#divimagen').html());
  5.     printWindow.document.close();
  6.     printWindow.focus();
  7.     printWindow.print();
  8.     });
__________________
>> Eleazan's Source
>> @Eleazan