MediaQueryList: media property
The media read-only property of the
MediaQueryList interface is a string representing a
serialized media query.
Value
A string representing a serialized media query.
Examples
This example runs the media query (max-width: 600px) and displays the
value of the resulting MediaQueryList's media property in a
<span>.
JavaScript
js
let mql = window.matchMedia("(max-width: 600px)");
document.querySelector(".mq-value").innerText = mql.media;
The JavaScript code passes the media query to match into matchMedia() to compile it, then sets the <span>'s
innerText to the value of the result's
media property.
HTML
html
<span class="mq-value"></span>
A simple <span> to receive the output.
Result
Specifications
| Specification |
|---|
| CSSOM View Module # dom-mediaquerylist-media |
Browser compatibility
BCD tables only load in the browser