Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/05/2005, 11:18
didierpavajeau
 
Fecha de Ingreso: noviembre-2004
Mensajes: 42
Antigüedad: 20 años, 5 meses
Puntos: 0
window.history showmodaldialog

[QUOTE=didierpavajeau]ombre otra vez
por que window.history no me arroja nada cuendo lo utilizo en un popup abierto con showmodaldialog en internet explorer
en mozila si me funciona bien

el codigo es este
paginamodal.htm
[HTML]
<html>
<script language="javascript">
function previus(){
h = window.history
if ( h.length ) // if there is a history
h.back(); // equivalent to clicking back button

}

function next(){
h = window.history;
if ( h.length ) // if there is a history
h.forward(); // equivalent to clicking back button
}
</script>