I am creating a video player which relies on loading both the vimeo and youtube playlist apis through ajax. Once they are loaded, for youtube I then need to loop through all the videos in the playlist and call the data api for each video to get its modified date. Once all vimeo videos are loaded and all youtube videos are loaded and have their creation dates, I need to sort them using jquery.
I'm looking for the best way to detect when these processes have been done, and the problem is I can't really start the sort until both the vimeo functions and the youtube functions have been completed. The best thing I could come up with was to run a setInterval function which checks on the status of two boolean flags - for example:
var youtubeReady = false, vimeoReady = false;
var videoStatusInterval = setInterval("checkVideoStatus",1000);
function checkVideoStatus(){
if (youtubeReady === true && vimeoReady === true){
sortVideos();
}
}
The problem is that this would run only periodically (every second in the example) - and it seems like there should be a way to do this instantaneously once both conditions are met. Anyone have any ideas?
setInterval. Just pass a reference to the functionsetInterval(checkVideoStatus, 1000);You can also make it more "instantaneous" by reducing the interval time. – Chad Jan 7 at 16:16