Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<script>
$(document).ready(function(){
$.getJSON('http://gdata.youtube.com/feeds/api/videos/Yx6-ZBOJYDg?v=2&alt=jsonc',
function(data){
console.log(data.data.title);
console.log(data.data.description);
});
});
</script>
$(document).ready(function(){ //Unten stehenden Code ausführen sobald DOM geladen ist
$.getJSON('http://gdata.youtube.com/feeds/api/videos/Yx6-ZBOJYDg?v=2&alt=jsonc', //JSON request auf die URL mit der VideoID Yx6-ZBOJYDg
function(data){ //callback Funktion falls alles in Ordnung war die requesteten Daten hast du als Parameter (data)
console.log(data.data.title); //Videotitel in der Konsole ausgeben
console.log(data.data.description); //Videobeschreibung in der Konsole ausgeben
});
});
<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.2.min.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$('#btn').click(function(){
var vid = $('#video-id').val();
$.getJSON('http://gdata.youtube.com/feeds/api/videos/'+vid+'?v=2&alt=jsonc',function(data){
var vdata = data.data;
$('#v-title').html(vdata.title);
$('#v-desc').html(vdata.description);
})
.error(function() {
$('#v-title').html('Fehler beim parsen des Videos');
$('#v-desc').html('Fehler beim parsen des Videos');
});
});
});
</script>
</head>
<body>
Video ID:
<input type="text" id="video-id" />
<button id="btn">Absenden</button>
<div>
Videotitel: <span id="v-title">Kein Video ausgewählt</span>
<br />
Videobeschreibung: <span id="v-desc">Kein Video ausgewählt</span>
</div>
</body>
</html>