HTML Audio/Video DOM seeking Property
Example
var vid = document.getElementById("myVideo");
function myFunction() {
document.getElementById("out").innerHTML = "Seeking: " + vid.seeking;
}
Meaning
The seeking property returns whether the user is currently seeking in the audio/video.
Standard Syntax
audio|video.seeking
Advertisement
Return Value
| Type | Description |
|---|---|
| true | Returns true if the user is currently seeking. |
| false | Returns true if the user is currently not seeking. |