Latest web development tutorials

HTML DOM Video seeking property

Video Object Reference Video Object

Examples

Video shows whether the user is addressing:

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

x output values:

Seeking: true

try it"

Definition and Usage

seeking property returns whether the user is currently in the audio / video addressing.

Addressing (Seeking) refers to the user in the audio / video move / jump to a new location.

Note: This property is read-only.


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support seekable attribute.

Note: Internet Explorer 8 or earlier versions of IE browser does not support this property.


grammar

videoObject .seeking

technical details

return value: A Boolean value that, if the user is addressing, was true. Otherwise, false.


Video Object Reference Video Object