Firefox Tomorrow

web api instance property

HTMLImageElement: fetchPriority property

View on MDN ↗

The fetchPriority property of the HTMLImageElement interface represents a hint to the browser indicating how it should prioritize fetching a particular image relative to other images. It reflects the <img> element’s fetchpriority content attribute.

Value

A string whose value is one of high, low, or auto. For their meanings, see the HTML fetchpriority attribute.

Examples

const img = new Image();
img.fetchPriority = "high";
img.src = "img/logo.png";

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.

See also