In my project, there is a video gallery module. In this module, there are two options: direct flv uploading, and adding a video embed code from youtube. I am writing an embed code into div element (actually, the embed code comes from data base). I want to Make this video play automatically.

<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/zGPuazETKkI" frameborder="0" allowfullscreen></iframe>

This is a sample embed code from youtube. I want to make this video play automatically using javascript.

link|improve this question

0% accept rate
feedback

2 Answers

You have to use

<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/zGPuazETKkI?autoplay=1" frameborder="0" allowfullscreen></iframe>

?autoplay=1

not

&autoplay=1

its the first URL param so its added with a ?

link|improve this answer
Thanks!! But it is also not working.. – Shima Mar 18 '11 at 10:25
weird.. working perfectly fine for me. Whats the problem? – Alex Bailey Mar 18 '11 at 11:07
feedback
<iframe title='YouTube video player' class='youtube-player' type='text/html'
        width='030' height='030'
        src='http://www.youtube.com/embed/ZFo8b9DbcMM?rel=0&border=&autoplay=1'
        type='application/x-shockwave-flash'
        allowscriptaccess='always' allowfullscreen='true'
        frameborder='0'></iframe>

just insert your code after embed/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.