I have to load two apis. The YouTube api which calls onYouTubePlayerReady when it has loaded and another api for SoundManager which calls soundManager.onready(...) when it has loaded. I do a lot of stuff in each of these ready functions to prepare the site. However, I also need to know when both have completed so I can do more initialization that require both to be fully loaded. Any idea how to have a function that is called when both of these ready functions are called?
| |||
|
feedback
|
|
Use a callback for both of them.
Then in the end of both onloads just do:
The things in that if statement will only run on the second time this function i s called. Small fiddle demo: http://jsfiddle.net/maniator/2X8rF/ | |||||||||
|
feedback
|
|
Just set a couple flags:
| |||
|
feedback
|
|
There is probably a better way with Defered's, but this is simple and should work. Just keep track of what loaded and what didn't.
| |||
|
feedback
|
|
Using jQuery deferred, you could build promises for each ready function. For example
Edit : the links given by Mike Gleason jr Couturier are quite useful http://www.erichynds.com/jquery/using-deferreds-in-jquery/ | |||
feedback
|
|
You could have both of your | |||
|
feedback
|
|
If using jQuery, take a look at deferred: http://www.erichynds.com/jquery/using-deferreds-in-jquery/ http://api.jquery.com/category/deferred-object/ Thanks | |||||
feedback
|