audio.loaderror
Path: rsConf.cb.audio.loaderror
Default: None
Description: Fires if the audio for some reason could not be loaded. The "this" keyword will refer to the container of the currently active player.
Example:
window.rsConf = {
cb: {
audio: {
loaderror: function () {
doSomething();
}
}
}
};