Created
May 24, 2021 17:09
-
-
Save pavanvamsi3/d1637f1241fcc445ab5aab477d8f767b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<iframe id="ytplayer" src="" width="500" height="205" frameborder="0" allowfullscreen> | |
</iframe> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
var array = [5, 150, 20, 500, 70, 90, 120, 200] | |
var randomTime = Math.floor(Math.random() * 8); | |
$("#ytplayer").attr("src", "https://www.youtube.com/embed/M7lc1UVf-VE?start=" + array[randomTime] + "&rel=0&showinfo=0&theme=light" ); | |
}) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment