THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Audio paused Property

Audio Object Reference Audio Object

Example

Find out if the audio is paused:

var x = document.getElementById("myAudio").paused;

The result of x could be:

true
Try it yourself »

Definition and Usage

The paused property returns whether the audio is paused.

Note: This property is read-only.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The paused property is supported in all major browsers.

Note: This property is not supported in Internet Explorer 8 and earlier.


Syntax

audioObject.paused

Technical Details

Return Value: A Boolean, returns true if the audio is paused. Otherwise it returns false

Audio Object Reference Audio Object