audio.loaded
Path: rsConf.cb.audio.loaded
Default: None
Description: Fires after the audio have loaded enough to start the playback, just before the playback begins. The "this" keyword will refer to the container of the currently active player.
Example:
window.rsConf = {
cb: {
audio: {
loaded: function () {
doSomething();
}
}
}
};