ui.play

Path: rsConf.cb.ui.play

Default: None

Description: Fires when the user clicks on a listen button, right after rsConf.cb.ui.open if the player was previously closed. Note that this event also fires when playback starts after the player has been paused or stopped. The "this" keyword will refer to the container element of the current player.

Example:

window.rsConf = {
	cb: {
		ui: {
			play: function() {
				doSomething();
			}
		}
	}
};