HTMLLinkElement: media property

The media property of the HTMLLinkElement interface is a string representing a list of one or more media formats to which the resource applies.

It reflects the media attribute of the <link> element.

Value

A string.

Examples

html
<link
  id="el"
  href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
  rel="stylesheet"
  media="screen and (min-width: 600px)"
  crossorigin="anonymous" />
js
const el = document.getElementById("el");
console.log(el.media); // Output: "screen and (min-width: 600px)"

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Opera Safari Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet WebView Android
media 1 12 1 ≤12.1 1 18 4 ≤12.1 1 1.0 4.4

© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement/media