ui.open
Path: rsConf.cb.ui.open
Default: None
Description: This event fires when the user opens a player, which happens when the user clicks on a listen button, it always fires before rsConf.cb.ui.play. The "this" keyword will refer to the container element of the currently active player.
Example:
window.rsConf = {
cb: {
ui: {
open: function() {
doSomething();
}
}
}
};