VOOZH about

URL: https://www.geeksforgeeks.org/html/html-dom-audio-loop-property/

⇱ HTML DOM Audio loop Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML DOM Audio loop Property

Last Updated : 22 Jun, 2023

The Audio loop property is used for setting or returning whether an audio should start playing over again when it is finished or not

Syntax: 

  • Return the loop property:
audioObject.loop
  • Set the loop property:
audioObject.loop = true | false

Property Values:

  • true | false: It is used to specify whether the audio should start playing over again, every time it is finished or not. It is false by default.

Return: The Audio loop property returns a Boolean true if the audio starts playing over again, every time it is finished, else, it returns false. 

The below program illustrates the Audio loop Property: 

Example 1: Setting the audio to loop. 

Output:

👁 Image
 

Example 2: Returning the audio to loop. 

Output:

👁 Image
 

Supported Browsers: The browser supported by HTML DOM Audio loop Property are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Apple Safari
Comment
Article Tags: