"Youtube" integration issue on my website

Solved
darksam0000 Posted messages 146 Status Membre -  
 zoungo -
Hello,

I have a problem with embedding the "YouTube" tags on my website.

Actually, the integration does not work on any browser, despite using the "iframe" tag (new method) and the "object" tag (old method).

For your information:
On Chrome v32: it tells me that the plugin is not found.
On Internet Explorer v11: it tells me that the webpage is not found.
On Firefox: it does not say anything. It displays a gray box of 400px by 200px...
On Safari: the code does not work (which is normal).

I have also tried with several videos from different channels, but nothing works.

I think it comes from my website. Can someone please help me?

HTML source code:

<div>
<h3>Welcome to our site</h3>
<div>
<p>
<iframe width="356" height="200" src="//www.youtube.com/embed/1BMMjnSwN3E?rel=0" frameborder="0" allowfullscreen></iframe>
</p>
</div>

Thank you in advance.
Samuel

2 answers

Pitet Posted messages 2845 Status Member 528
 
Hello,

The link in the src attribute is incorrect, you are missing the protocol:

<iframe width="356" height="200" src="http://www.youtube.com/embed/1BMMjnSwN3E?rel=0" frameborder="0" allowfullscreen></iframe>


Have a nice day
13
zoungo
 
Hello

I tried adding http: in front of www., but it still doesn't work. I don't see the video thumbnail on my personal page
Thank you
0