Open In App

HTML DOM Audio pause() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML DOM Audio pause() Method is used to pause the currently playing audio. To use the audio pause() method, one must use the controls property to display the audio controls such as play, pause, volume, etc, attached to the audio. The audio pause() method does not accept any parameters and does not return any values.

Syntax: 

audio.pause()

Parameters: This method does not accept any parameters.

Return Value: This method does not return any value.

Example: Below example illustrates the use of the Audio pause() Method. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        Audio paused method
    </title>
</head>
 
<body style="text-align: center">
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <h2>HTML DOM Audio pause() Method</h2>
    <br>
    <audio id="Test_Audio" controls>
        <source src=
                type="audio/mpeg">
    </audio>
    <br><br>
    <button ondblclick="play()" type="button">
        play Audio
    </button>
    <button ondblclick="pause()" type="button">
        pause Audio
    </button>
    <p id="test"></p>
 
    <script>
        let gfg = document.getElementById("Test_Audio");
        function play() {
            gfg.play();
        }
        function pause() {
            gfg.pause();
        }
    </script>
</body>
 
</html>


Output: 

Supported Browsers: The browser supported by the HTML DOM audio pause() method are listed below: 

  • Google Chrome
  • Internet Explorer 9.0
  • Firefox
  • Apple Safari
  • Opera


Last Updated : 20 Jun, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads