Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM Audio pause() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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 on 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 accepts any parameters.
Return Value: This method does not return any value.
Example: Below example illustrates the use of 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>
        var gfg = document.getElementById("Test_Audio");
         
        function play() {
            gfg.play();
        }
        function pause() {
            gfg.pause();
        }
    </script>
</body>
 
</html>

Output: 
 

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

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

 


My Personal Notes arrow_drop_up
Last Updated : 19 Apr, 2021
Like Article
Save Article
Similar Reads
Related Tutorials