Ver Mensaje Individual
  #2 (permalink)  
Antiguo 10/09/2011, 04:48
cuideru
 
Fecha de Ingreso: febrero-2007
Mensajes: 109
Antigüedad: 17 años, 2 meses
Puntos: 1
Respuesta: Carga youtube onLoad en Shadowbox

Gracias a danneg por ayudarme con el código, ahora funciona correctamente:

Código:
<link rel="stylesheet" href="shadowbox/shadowbox.css">
<script src="shadowbox/shadowbox.js"></script>
<script>
	Shadowbox.init({skipSetup: true});

        window.onload = function() {

            Shadowbox.open({
                content: 'http://www.youtube.com/embed/NpGebexrCUQ',
                player: "iframe",
                title: "carga youtube",
                width: 425,
                height: 349 
            });
         }
</script>