Angular πŸ‡ΊπŸ‡¦ - practical notes
1.63K subscribers
1.6K photos
1 file
532 links
Angular - practical notes

This group is for posting practical notes for Angular developers. Mostly all posts are for quick implementation https://t.me/angular_practical_notes (Commenting on posts only in ENG and UA langs here). Welcome!
Download Telegram
πŸ“„ Browser Fetch Priority API

#js #fetch #fetchpriority

At the time of writing this article, the fetchpriority attributed is supported on the following elements:

β€” img
β€” script
β€” link
β€” iframe

The fetchpriority attribute can take on one of three values:

β€” high: Designates the resource as high priority, requesting the browser to prioritize it unless its heuristics advise otherwise.
β€” low: Marks the resource as low priority, instructing the browser to deprioritize it if its heuristics allow.
β€” auto: The default value, indicating no specific preference, allowing the browser to autonomously determine the suitable priority.


βœ… Article link
πŸ‘1