Imagine you have an iframe
embedded on a webpage, allowing users to watch a YouTube video:
<iframe width="640" height="390" src="https://www.youtube.com/embed/--id--"
frameborder="0" allowfullscreen></iframe>
Now, is there a way to include a link or button below the video that enables full-screen playback when clicked?
<p>Click <a href="???">here</a> to play in full screen mode.</p>
By the way, I do not utilize JQuery or any other external libraries.