Insertar un html dentro de otro html

Bueno mi consulta es la siguiente. Tengo 2 códigos embebidos de un noticiero, el cual lo veo en 2 videos, ¿desearía saber como puedo verlo todo en un solo video?. Le dejo los 2 códigos:
Código 1
<iframe id="iframe_video" src="http://server1.flatina.com/www/videos_flv/mediaplayer/flvplayer_PuntoFinal.php?id=551" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="No" height="260" width="320"></iframe>
codigo 2
<iframe id="iframe_video" src="http://server1.flatina.com/www/videos_flv/mediaplayer/flvplayer_PuntoFinal.php?id=552" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="No" height="260" width="320"></iframe>
Mi consulta es ; ¿Cómo veo estos 2 videos en uno solo?

1 respuesta

Respuesta
1
A ver si es esto lo que quieres:
<iframe id="iframe_video" name="iframe_video" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="No" height="260" width="320"></iframe>
<br/>
<input type="button" id="btn_video1" onclick="document.iframe_video.src='http://server1.flatina.com/www/videos_flv/mediaplayer/flvplayer_PuntoFinal.php?id=551'">Ver video 1</input>

<input type="button" id="btn_video2" onclick="document.iframe_video.src='http://server1.flatina.com/www/videos_flv/mediaplayer/flvplayer_PuntoFinal.php?id=552'">Ver video 2</input>
Experto Carlos.
Le agradezco la inmediata respuesta. Ha captado mi pregunta perfectamente, pero He insertado en mi página web el código que ud. ha elaborado para ver los dos videos en uno solo haciendo click una vez en play. Pero no dio resultado, solo aparece la pantalla en blanco y abajo dos puntos que dicen "ver video1 y ver video2" no he logrado visualizar nada, si le sobra algún tiempito, le agradecería si intentara una vez más. Gracias! Le reenvío los dos códigos, por si me haya equivocado:
Codigo 1
 <iframe id="iframe_video" height="260" marginheight="0" src="http://server1.flatina.com/www/videos_flv/mediaplayer/flvplayer_PuntoFinal.php?id=551" frameborder="0" width="320" marginwidth="0" scrolling="no"></iframe>
codigo2
<iframe id="iframe_video" height="260" marginheight="0" src="http://server1.flatina.com/www/videos_flv/mediaplayer/flvplayer_PuntoFinal.php?id=552" frameborder="0" width="320" marginwidth="0" scrolling="no"></iframe>
Perdona, pero es lo que tiene no probar las cosas y escribirlas directamente:

<body>
<iframe id="iframe_video" height="260" marginheight="0" src="" frameborder="0" width="320" marginwidth="0" scrolling="no"></iframe> 
<input type="button" id="btn_video1" onclick="document.getElementById('iframe_video').src='http://server1.flatina.com/www/videos_flv/mediaplayer/flvplayer_PuntoFinal.php?id=551'" value="Ver video 1"></input> 
<input type="button" id="btn_video2" onclick="document.getElementById('iframe_video').src='http://server1.flatina.com/www/videos_flv/mediaplayer/flvplayer_PuntoFinal.php?id=552'" value="Ver video 2"></input> 
</body>

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas