Ver Mensaje Individual
  #3 (permalink)  
Antiguo 04/09/2005, 12:12
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 18 años, 8 meses
Puntos: 39
Prueba con esto:
Código HTML:
<style type="text/css">
  .hidden{visibility:hidden;}
</style>
<script type="text/javascript">
function DeshabilitarFrame()
{
  top.frames['Frame1'].document.body.className='hidden';
  ...
  top.frames['Frame7'].document.body.className='hidden';
}
</script>