Cita:
Iniciado por nicolaspar Bueno, cuando haces la llamada a la función enviarIframe en ella hace:
frames['miIframe'].location.href
Y le asigna nuevamente el src.
Esto hará que recargue tu frame. En él, cargaras pagina.alg, donde supongamos que es realmente pagina.php en ella haras al inicio:
<?php echo $_GET["nuevoValor"]; ?>
Con esto verás si realmente esta enviando el valor. Logue con él has lo que necesites.
Ya ese es el punto , no se esta recargando:
funcion enviarIframe( valor ){
frames['miIframe'].location.href = 'iframepc.php?nuevoValor=' + valor.value
}
</script>
<iframe src="iframepc.php" id="miIframe" name="miIframe" width="500" height="450"></iframe>