Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My question is : how can I change the title when changing the video? I have used the youtube api. Here the code.

<html> <head> <title>My Videos</title>

.titlec { font-size: small; } ul.videos li { float: left; width: 10em; margin-bottom: 1em; } ul.videos { margin-bottom: 1em; padding-left : 0em; margin-left: 0em; list-style: none; } .thumbnail{ width: 130px; float: left;

    background:#000000; 
    margin: 0 5px 0 0;  }  .title { 
font-family: Arial, Helvetica, sans-serif;
font-size:14px; 
    font-weight: bold; 
    font-stretch:expanded; 
      color:#333333; 
    padding: 0 0 10px 0;  } 

A.authorlink:active, A.authorlink:link, A.authorlink:visited { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color:

000000; font-weight: normal; text-decoration: none; } A.authorlink:hover{ font-family: Arial, Helvetica, sans-serif;

font-size: 12px; color:

333333; font-weight: normal; text-decoration: underline; }

function loadVideo(playerUrl, autoplay) { swfobject.embedSWF( playerUrl + '&rel=1&border=0&fs=1&autoplay=' + (autoplay?1:0), 'player', '750', '580', '9.0.0', false, false, {allowfullscreen: 'true'}); } function showMyVideos2(data) { var feed = data.feed; var entries = feed.entry || []; var html = ['']; for (var i = 0; i html.push('<li onclick="loadVideo(\'', playerUrl, '\', true)">', ' <img src="',thumbnailUrl, '" width="150" height="110"/>' , title, '
', durationmindef,' minuti
' , viewcount, ' visualizzazioni '); } html.push(''); document.getElementById('videos2').innerHTML = html.join(''); document.getElementById('playerTitle').innerHTML = title2;
   if (entries.length > 0) { 
loadVideo(entries[0].media$group.media$content[0].url, false);





    }  } 

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.