Monday, September 1, 2014

Random Video Embeded

Paste This Code on Page Layout - Add a Gadget - HTML/Javascript


<script type="text/javascript">
var videos = [
    '1271942',
    '6692106',
    '4602387'
];

var index=Math.floor(Math.random() * videos.length);
var html='<div class="span4"><h3 class="meet">Random video</h3><iframe width="100%" height="200" src="http://flashservice.xvideos.com/embedframe/' + videos[index] + '" frameborder="0" allowfullscreen></iframe></div>';
document.write(html);
</script>

No comments:

Post a Comment