Ver Mensaje Individual
  #1 (permalink)  
Antiguo 26/11/2010, 20:58
Avatar de smilerios
smilerios
 
Fecha de Ingreso: noviembre-2010
Mensajes: 14
Antigüedad: 13 años, 6 meses
Puntos: 0
Funciona en IE pero no Moz...

Este codigo funciona en IE, pero no en Mozila...

por que??????

pruebaIframe.html



<html>

<head>

<script language="JavaScript">

function B() {

window.top.Contenedor.value = document.f.txtorigen.value;

}





</script>

</head>

<body>

Este es el Iframe<br>

<Form name="f">

<input type="text" name="txtorigen" id="txtorigen"><br>

<input type="button" onClick="B();" value="BOTON">

</form>

</body>

</html>