Canceling Requests in JS...TS
#js #fetch #AbortController
β Link: https://javascript.plainenglish.io/best-practices-for-using-abortcontroller-87892b72d07e
#js #fetch #AbortController
β Link: https://javascript.plainenglish.io/best-practices-for-using-abortcontroller-87892b72d07e
π Browser Fetch Priority API
#js #fetch #fetchpriority
β Article link
#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