FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

Audio seeking Property

Audio Object Reference Audio Object

Example

Show if the user is currently seeking in the audio:

var x = document.getElementById("myAudio");
document.getElementById("mySpan").innerHTML = ("Seeking: " + x.seeking);

The result of x could be:

Seeking: true
Try it Yourself »

Definition and Usage

The seeking property returns if the user is currently seeking in the audio.

Seeking is when you move/skip to a new position in the audio.

Note: This property is read-only.


Browser Support

Property
seeking Yes Yes Yes Yes Yes

Syntax

audioObject.seeking

Technical Details

Return Value: A Boolean, returns true if the user is currently seeking, otherwise it returns false

Audio Object Reference Audio Object