MediaError
All media elements have an associated error status, which records the last error the element encountered since its resource selection algorithm was last invoked. The error attribute, on getting, must return the MediaError object created for this last error, or null if there has not been an error.
For additional information, see https://html.spec.whatwg.org/multipage/media.html#mediaerror.
Properties
code
readonly
code:number
Returns the current error's error code, from the list below.
For additional information, see https://html.spec.whatwg.org/multipage/media.html#concept-mediaerror-code.
MEDIA_ERR_ABORTED
readonly
MEDIA_ERR_ABORTED:number
The fetching process for the media resource was aborted by the platform at the user's request.
For additional information, see https://html.spec.whatwg.org/multipage/media.html#dom-mediaerror-media_err_aborted.
MEDIA_ERR_DECODE
readonly
MEDIA_ERR_DECODE:number
An error of some description occurred while decoding the media resource, after the resource was established to be usable.
For additional information, see https://html.spec.whatwg.org/multipage/media.html#dom-mediaerror-media_err_decode.
MEDIA_ERR_NETWORK
readonly
MEDIA_ERR_NETWORK:number
A network error of some description caused the platform to stop fetching the media resource, after the resource was established to be usable.
https://html.spec.whatwg.org/multipage/media.html#dom-mediaerror-media_err_network.
MEDIA_ERR_SRC_NOT_SUPPORTED
readonly
MEDIA_ERR_SRC_NOT_SUPPORTED:number
The media resource indicated by the src attribute or assigned media provider object was not suitable.
For additional information, see https://html.spec.whatwg.org/multipage/media.html#dom-mediaerror-media_err_src_not_supported.
message
readonly
message:string
Returns a specific informative diagnostic message about the error condition encountered.
For additional information, see https://html.spec.whatwg.org/multipage/media.html#dom-mediaerror-message.
Last updated: Sep 30, 2025