Bei mir sieht das Ganze so aus:
<script>
// Load the IFrame Player API code asynchronously.
var tag = document.createElement('script');
tag.src = "
https://www.youtube.com/player_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
// Replace the 'ytplayer' element with an <iframe> and
// YouTube player after the API code downloads.
var player;
function onYouTubePlayerAPIReady() {
player = new YT.Player('ytplayer', {
playerVars: {'modestbranding': true,'disablekb': 1,'autohide': 1,'showinfo':0,'fs': 0,'iv_load_policy': 3,'showinfo':1,'controls':0,'rel': 0},
height: '390',
width: '640',
videoId: 'gPlwvMpU3rI'
});
}
</script>
Wenn ich aber wie geschrieben einen Link einfüge, wird aber nichts mehr angezeigt.