Sadesh Kumar N
Sadesh Kumar N

Reputation: 2052

The youtube video is not loading in the my local webpage

I have taken the following iframe code for the youtube video from the youtube itself.

<iframe width=”560? height=”315? src=”http://www.youtube.com/embed/V3oJR5IAMxM” frameborder=”0? allowfullscreen></iframe>

But when i try to embed this video on simple web-page inside a div element. I can see the you-tube player in the web page.But the video is not loading in my webpage. But the same video is playing for me in youtube.

Can someone tell what might be the problem,..

Is the problem with a code or with the browser, i am using mozilla 13.

Upvotes: 0

Views: 2453

Answers (1)

mitchimus
mitchimus

Reputation: 828

HiTbmBizz,

Try this instead,

<iframe width="640" height="360" src="http://www.youtube.com/embed/V3oJR5IAMxM?feature=player_embedded" frameborder="0" allowfullscreen></iframe>

Worked for me in HTMLSandbox if you want to test.

Let me know how it goes.

Upvotes: 2

Related Questions