|
Pauses the playback. Function: /** *To toggle play to pause */ function pause(); Example:
//Initialize the interface
player = new JarisFLVPlayer("Id_Of_Player_Object");
//Start playing the video
player.play();
//Pause the playback
player.pause();
|