THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

Video played Property

Video Object Reference Video Object

Example

Get the first played range (part) of the video in seconds:

var x = document.getElementById("myVideo");
document.getElementById("demo").innerHTML = "Start: " + x.played.start(0)
+ " End: " + x.played.end(0)

The result of x could be:

Start: 0 End: 2.162583
Try it yourself »

Definition and Usage

The played property returns a TimeRanges object.

The TimeRanges object represents ranges of the video that has already been played (seen) by the user.

A played range is a time-range of played video. The user gets several played ranges if he/she skips in the video.

Note: This property is read-only.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The played property is supported in all major browsers.

Note: This property is not supported in Internet Explorer 8 and earlier.


Syntax

videoObject.played

Return Value

Type Description
TimeRanges Object Represents the played parts of the video.

TimeRanges Object Properties:

  • length - get the number of played ranges in the video
  • start(index) - get the start position of a played range
  • end(index) - get the end position of a played range

Note: The first played range is index 0


Video Object Reference Video Object