Tema: imprimir
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 25/04/2005, 14:30
Avatar de PabloP
PabloP
 
Fecha de Ingreso: marzo-2005
Mensajes: 83
Antigüedad: 19 años, 10 meses
Puntos: 0
con esto puedes imprimir el frame en caso de que lo tengas en frames y asi no imprimes la pantalla completa

<script>
// (C) 2004 www.CodeLifter.com
// Free for all users, but leave in this header
function framePrint(whichFrame){
parent[whichFrame].focus();
parent[whichFrame].print();
}
</script>

<!-- STEP ONE: Paste this code into the BODY of your HTML document -->

<a href="javascript:framePrint('FRAMENAME');">
CLICK TO PRINT
</a>