Answer to @jamesfrancisco
- Code: Select all
<iframe src="http://www.youtube.com/v/AbUc68bTBmg&autoplay=1" width="480px" height="390px" scrolling="no" style="border-width: 0px;">Your browser does not support iframes.</iframe>
If you need words to wrap around this video, then you will need to specify align="left/right".
If you need to configure margins and padding, then add to the style attribute.
I have found that style="margin-left: -10px; margin-top: -10px; -moz-padding-start: 10px;"> works to make mine line-up the same on IE and FireFox. But I also use align="right" to make the words wrap the left side of my video.
You might need to tinker around with the different margins and padding options to get the video to appear correctly and exactly where you want it.
The &autoplay=1 only works on youtube URL's that have a "/v/" instead of "/embed/". ie.
THIS WORKS
<iframe src="http://www.youtube.com/v/AbUc68bTBmg&autoplay=1" width="480px" height="390px" scrolling="no" style="border-width: 0px;">Your browser does not support iframes.</iframe>
THIS DOES NOT WORK
<iframe src="http://www.youtube.com/embed/AbUc68bTBmg&autoplay=1" width="480px" height="390px" scrolling="no" style="border-width: 0px;">Your browser does not support iframes.</iframe>
In fact, the second example doesn't even appear on the screen.
If you want your video to NOT autoplay, then add &autoplay=0 to the end of your URL without spaces.
Or simply remove &autoplay=1