Disconnect HTML5 content from embedded YouTube video

I have a YouTube video embedded in my page. I want to disable the option for my users to right click on the video and grab the url.

enter image description here

<?php
echo '<iframe width="100%" height="100%" src="//www.youtube.com/embed/DZGINaRUEkU' 
. '?&rel=0&autoplay=0&showinfo=0&controls=0" frameborder="0" allowfullscreen>';
?>

      

How can i do this? I've already disabled as many options as Google could. Please, help

+3


source to share





All Articles