How can I autoplay a video using the new embed code style for Youtube?
My code followed these instructions and does not work. I also looked on the YouTube help and they say the same thing -- does not work for me.
<html><body>
<iframe width="640" height="385" src="//www.youtube.com/embed/0319ZgKMLzw?autoplay" frameborder="0" allowfullscreen></iframe></body>
</html>
See it not autoplaying here, the code is there in firebug.
Edit your embed code to "?autoplay=1" and add "http://". Here is the working code for you...
<iframe width="640" height="385" src="http://www.youtube.com/embed/0319ZgKMLzw?autoplay=1"> </iframe>