אשכול: youtube - הטמעה
View Single Post
ישן 05-07-12, 13:23   # 2
Haimz
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Sep 2010
הודעות: 1,221

Haimz לא מחובר  

קוד:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function youtube(url)
{
var point = url.indexOf("?v=");
url = url.substring(point + 3, url.length);
url = "http://www.youtube.com/embed/" + url;
document.getElementById("demo").innerHTML = url;
}
</script>
</head>
<body>

<p id="demo">http://www.youtube.com/watch?v=HIRNdveLnJI</p>

<button type="button" onclick="youtube('http://www.youtube.com/watch?v=HIRNdveLnJI')">get youtube url</button>

</body>
</html>
תהנה ..
  Reply With Quote