creativeheadz
Erfahrenes Mitglied
Hallo,
ich würde gerne mittels folgendem Code YoutubeVideos in einem DIV nachladen.
So sieht mein Code aus (leider klappt er nicht):
Hier die hallo.php :
Wäre super wenn mir jemand helfen könnte.
gruß
ich würde gerne mittels folgendem Code YoutubeVideos in einem DIV nachladen.
So sieht mein Code aus (leider klappt er nicht):
HTML:
<script type="text/javascript">
var xmlHttpObject = false;
if (typeof XMLHttpRequest != 'undefined')
{
xmlHttpObject = new XMLHttpRequest();
}
if (!xmlHttpObject)
{
try
{
xmlHttpObject = new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
xmlHttpObject = new ActiveXObject("Microsoft.XMLHTTP");
}
catch(e)
{
xmlHttpObject = null;
}
}
}
function loadContent(id)
{
xmlHttpObject.open('get', "hallo.php?v=" + id);
xmlHttpObject.onreadystatechange = handleContent;
xmlHttpObject.send(null);
return false;
}
function handleContent()
{
if (xmlHttpObject.readyState == 4)
{
document.getElementById('myContent').innerHTML = xmlHttpObject.responseText;
}
}
</script>
<p id="myContent">
<a href="#" onClick="loadContent(uM6Ms621898);"><img src="http://i2.ytimg.com/vi/uM6Ms621898/default.jpg"></a>
</p>
<p id="myContent">
<a href="#" onClick="loadContent(36ihFPErYD4);"><img src="http://i4.ytimg.com/vi/36ihFPErYD4/default.jpg"></a>
</p>
Hier die hallo.php :
PHP:
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/<?php echo $_GET['v']; ?>?fs=1&hl=de_DE&autoplay=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/<?php echo $_GET['v']; ?>?fs=1&hl=de_DE&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object>
Wäre super wenn mir jemand helfen könnte.
gruß