Reputation:
Help me to solve. I want to make fullscreen video means (allowfullscreen) with jquery. Please help me how to do that. This is my code for iframe videos
<iframe frameborder="0" height="275"
src="https://www.youtube.com/embed/tum8KtULX7M" width="100%"></iframe>
<iframe frameborder="0" height="275"
src="https://www.youtube.com/embed/RtdT8Tjaehg" width="100%"></iframe>
<iframe frameborder="0" height="275"
src="https://www.youtube.com/embed/tbXhvBUKN_Y" width="100%"></iframe>
</div>
Please check it. Thank you so much In advance.
Upvotes: 2
Views: 105
Reputation: 95
Try this once:
<iframe frameborder="0" height="100%"
src="https://www.youtube.com/embed/tum8KtULX7M" width="100%"></iframe>
<iframe frameborder="0" height="100%"
src="https://www.youtube.com/embed/RtdT8Tjaehg" width="100%"></iframe>
<iframe frameborder="0" height="100%"
src="https://www.youtube.com/embed/tbXhvBUKN_Y" width="100%"></iframe>
</div>
Upvotes: 1