VOOZH about

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

⇱ HTML DOM Audio defaultMuted Property - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

HTML DOM Audio defaultMuted Property

Last Updated : 22 Jun, 2023

The Audio defaultMuted property is used for setting or returning whether the audio should be muted by default or not. The audio defaultMuted property cannot change the current mute state, it only affects the default muted state. 

Syntax:

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

Property Values:

  • true|false: It is used to specify whether audio should automatically start playing as soon as it is loaded or not. By default, it is set to false.

The below program illustrates the Audio defaultMuted Property: 

Example: Setting the audio to be muted by default. 

Output:

👁 Image
 

Supported Browsers: The browser is supported by HTML | DOM Audio defaultMuted Property are listed below:

  • Google Chrome 15 and above
  • Edge 12 and above
  • Firefox 11 and above
  • Opera 12.1 and above
  • Apple Safari 6 and above
  • Internet Explorer not supported
Comment
Article Tags: