The HTMLAudioElement
interface provides access to the properties of <audio>
elements, as well as methods to manipulate them.
This element is based on, and inherits properties and methods from, the HTMLMediaElement
interface.
The HTMLAudioElement
interface provides access to the properties of <audio>
elements, as well as methods to manipulate them.
This element is based on, and inherits properties and methods from, the HTMLMediaElement
interface.
Audio()
Creates and returns a new HTMLAudioElement
object, optionally starting the process of loading an audio file into it if the file URL is given.
No specific properties; inherits properties from its parent, HTMLMediaElement
, and from HTMLElement
.
Inherits methods from its parent, HTMLMediaElement
, and from HTMLElement
. It offers no methods of its own.
You can create a HTMLAudioElement
entirely with JavaScript using the Audio()
constructor:
js
const audioElement = new Audio("car_horn.wav");
then you can invoke the play()
method on the element
js
audioElement.play();
Note: A common gotcha is trying to play an audio element immediately on page load. Modern browser's default autoplay policy will block that from happening. Refer to Firefox and chrome for best practices and work arounds.
Some of the more commonly used properties of the audio element include src
, currentTime
, duration
, paused
, muted
, and volume
. This snippet copies the audio file's duration to a variable:
js
const audioElement = new Audio("car_horn.wav"); audioElement.addEventListener("loadeddata", () => { let duration = audioElement.duration; // The duration variable now holds the duration (in seconds) of the audio clip });
Inherits methods from its parent, HTMLMediaElement
, and from its ancestor HTMLElement
. Listen to events using addEventListener()
or by assigning an event listener to the oneventname
property of this interface.
Specification |
---|
HTML Standard # htmlaudioelement |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
Audio |
4 | 12 | 3.5 | 9 | ≤12.1 | 3.1 | ≤37 | 18 | 4 | ≤12.1 | 3 | 1.0 |
HTMLAudioElement |
3 | 12 | 3.5 | 9 | 10.5 | 3.1 | ≤37 | 18 | 4 | 11 | 3 | 1.0 |
<audio>
.
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement