HTML DOM Link media Property
THE WORLD'S LARGEST WEB DEVELOPER SITE

Link media Property

❮ Link Object

Example

Return the media type the link element is intended for:

var x = document.getElementById("myLink").media;
Try it Yourself »

Definition and Usage

The media property sets or returns the media type for the link element.

The media type is important for style information. The style might be different for computers and mobile devices.


Browser Support

Property
media Yes Yes Yes Yes Yes

Syntax

Return the media property:

linkObject.media

Set the media property:

linkObject.media = device

Property Values

Value Description
all For all devices. This is default
aural For speech synthesizers
braille For Braille tactile feedback devices
embossed For paged Braille printers
handheld For handheld devices
print For printed pages and print preview
projection For projectors or transparencies
screen For color computer screens
speech For speech synthesizers
tty For teletype devices
tv For TV-type devices

Technical Details

Return Value: A String, representing a comma-separated list of media types

More Examples

Example

Change the media type:

document.getElementById("myLink").media = "all";
Try it Yourself »

Related Pages

HTML reference: HTML <link> media attribute


❮ Link Object