Skip to content

Instantly share code, notes, and snippets.

@p5150j
Last active December 11, 2015 08:48
Show Gist options
  • Select an option

  • Save p5150j/4575150 to your computer and use it in GitHub Desktop.

Select an option

Save p5150j/4575150 to your computer and use it in GitHub Desktop.
<script>
$.getJSON('js/data_videos.json', function(data) {
var output="<li>";
for (var i in data.videos) {
output+="<video width='320' height='240' controls> <source src='+ data.videos[i].videoURLsDood'>" + "</video>";
}
output+="</li>";
document.getElementById("Featured").innerHTML=output;
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment