Below is my embed code. The full screen button doesn't show up at the width of 305 pixels. Any help will be appreciated.
<iframe width="305" height="200" src="//www.youtube/embed/HMUDVMiITOU" frameborder="0" allowfullscreen></iframe>
fiddle
Below is my embed code. The full screen button doesn't show up at the width of 305 pixels. Any help will be appreciated.
<iframe width="305" height="200" src="//www.youtube./embed/HMUDVMiITOU" frameborder="0" allowfullscreen></iframe>
fiddle
I've been struggling with the same problem and for me the key was allowfullscreen="1" as an attribute in the iframe.
use this one for the fullscreen button:
<object width="305" height="200">
<param
name="movie"
value="http://www.youtube./v/HMUDVMiITOU">
</param>
<param
name="allowscriptaccess"
value="always">
</param>
<param
name="allowFullScreen"
value="true">
</param>
<embed
src="http://www.youtube./v/HMUDVMiITOU"
type="application/x-shockwave-flash"
allowscriptaccess="always"
allowfullscreen="true"
width="305"
height="200">
</embed>
</object>