The HTMLMediaElement.loop property reflects the loop HTML attribute, which controls whether the media element should start over when it reaches the end.
Syntax
var loop = video.loop; audio.loop = true;
Value
A Boolean.
Example
var obj = document.createElement('video');
obj.loop = true; // true
Specifications
| Specification | Status | Comment |
|---|---|---|
| HTML Living Standard The definition of 'HTMLMediaElement.loop' in that specification. |
Living Standard | |
| HTML5 The definition of 'HTMLMediaElement.loop' in that specification. |
Recommendation |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
loop | Chrome Full support 43 | Edge Full support 12 | Firefox Full support 11 | IE Full support 9 | Opera Full support Yes | Safari Full support Yes | WebView Android Full support 43 | Chrome Android Full support Yes | Firefox Android Full support Yes | Opera Android ? | Safari iOS ? | Samsung Internet Android Full support Yes |
Legend
- Full support
- Full support
- Compatibility unknown
- Compatibility unknown
See also
- The interface defining it,
HTMLMediaElement.
