Ok. So I have a structure like this:
<div class="fp_YouTube">
<div class="player">
<object width="425" height="349"> ... </object>
</div>
<ol class="playlist">
<li id="YouTubeID_w7naKj-z5So"> ... </li>
<li id="YouTubeID_naiN5V4Q1rI"> ... </li>
</ol>
</div>
And eventually what I am doing is replacing the contents of "player"
with a new video, based on observing a click on one of the list items
in "playlist". I've done it before but I'm trying to prototypejs it
up a little nicer.
SO... I have this JS code going:
$$('div.fp_YouTube').each(function(el) {
var player = el.select('.player');
var playlist = el.select('.playlist');
playlist.select('li').each(function(video) {
console.log(video.id);
});
});
But it is not
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---