Audio seeking property

Definition and Usage

Returns if the user is currently searching in the audio. seeking Property.

Searching refers to moving or jumping to a new position in the audio.

Note:This property is read-only.

Example

Display whether the user is currently searching for audio:

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

Try It Yourself

Syntax

audioObject.seeking

Technical Details

Return Value: Boolean value, returns true if the user is currently searching, otherwise returns false.

Browser Support

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
Support Support Support Support Support