HTML DOM Audio networkState Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Audio networkState Property

❮ Audio Object

Example

Get the current network state of the audio:

var x = document.getElementById("myAudio").networkState;
Try it Yourself »

Definition and Usage

The networkState property returns the current network state (activity) of the audio.


Browser Support

Property
networkState Yes Yes Yes Yes Yes

Syntax

audioObject.networkState

Return Value

Type Description
Number Represents the current network state of the audio element:
  • 0 = NETWORK_EMPTY - audio has not yet been initialized
  • 1 = NETWORK_IDLE - audio is active and has selected a resource, but is not using the network
  • 2 = NETWORK_LOADING - browser is downloading data
  • 3 = NETWORK_NO_SOURCE - no audio source found

❮ Audio Object