I'm working on a code which will allow people on my site to press a "next/previous" button and scroll through youtube videos on a specific account (mine) but I've been having trouble getting the iframe to update with the next video in the series. I've had a look around, and I'm sure there are other people that have done this in the past, but I couldn't find anything. This is what I have so far:
<html>
<head>
<script type = "application/javascript">
function ytfunc(root){
var ytobj = root.feed
entries = ytobj.entry ||[];
document.getElementById("youtube").src= ytobj.entry[0].media$group.media$content[0].url + "&autohide=1"
}
</head>
<body>
<iframe height="360" width="640" id="youtube" frameborder="0"></iframe>
</body>
<script id="ytref" type="application/javascript" src="http://gdata.youtube.com/feeds/api/videos?author=floatingdino&orderby=published&callback=ytfunc&alt=json-in-script&format=5&max-results=1"></script>
</html>
-That's the basic load, which works perfectly. However, with the button and iterating function included:
var number = 0
function ytchange(operator){
number ++
document.getElementById("ytref").src ="http\:\/\/gdata\.youtube.com\/feeds\/api\/videos\?author=floatingdino\&orderby=published\&callback=ytfunc\&alt=json-in-script\&format=5\&max-results=1\&startindex=" + number
ytfunc(root)
alert("test")
}
I've tried running it all in one function, with the same amount of success, and with this one the "test" alert doesn't show - I think it has issues with pulling data from the JSON twice. I've also tried just shifting the index rather than pulling from a new URL, but that hasn't worked either. Any suggestions?
Current testbed - Click Here