Skip to content

Bits of .NET

Daily micro-tips for C#, SQL, performance, and scalable backend engineering.

  • Asp.Net Core
  • C#
  • SQL
  • JavaScript
  • CSS
  • About
  • ErcanOPAK.com
  • No Access
  • Privacy Policy
Ajax

Ajax: Use Priority Hints to Tell Browser Which Resources Load First

- 05.06.26 - ErcanOPAK

⚡ Hero Image > Analytics Script

Browsers guess priority. They’re often wrong. Priority Hints (fetchpriority) tell browser exactly what’s important. Faster LCP, better UX.

📝 Basic Priority Hints

<!-- High priority (hero image, main content) -->
<img src="hero.jpg" fetchpriority="high">
<link rel="preload" href="font.woff2" as="font" fetchpriority="high">

<!-- Low priority (below fold, analytics) -->
<img src="footer-logo.png" fetchpriority="low">
<script src="analytics.js" fetchpriority="low" defer></script>

<!-- Auto (browser default) -->
<img src="normal.jpg" fetchpriority="auto">

🎯 Fetch API Priority

// Critical API (high priority)
fetch('/api/hero-data', {
  priority: 'high'
});

// Background analytics (low priority)
fetch('/api/log', {
  priority: 'low'
});

// Lazy-loaded sections (auto priority)
fetch('/api/comments', {
  priority: 'auto'
});

✅ Example: LCP Optimization

  • Without priority: Hero image loads after scripts
  • With priority: fetchpriority=’high’ on hero image → 200ms faster LCP
  • De-prioritize below-fold images → saves bandwidth
  • Great for mobile connections (slow 3G, 4G)

“Hero image loaded after 5 render-blocking scripts. Added fetchpriority=’high’. LCP improved from 2.5s to 1.2s. Lighthouse score jumped 30 points. One attribute did that.”

— Performance Specialist

Related posts:

Ajax: Mastering Request Cancellation with AbortController

Ajax: Understanding CORS and How to Fix It

AJAX — Network Tab Lies About Timing

Post Views: 3

Post navigation

JavaScript: Use WeakRef and FinalizationRegistry to Prevent Memory Leaks
Git: Use Git Stash Show to See What’s in a Stash

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

June 2026
M T W T F S S
1234567
891011121314
15161718192021
22232425262728
2930  
« May    

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (953)
  • How to add default value for Entity Framework migrations for DateTime and Bool (882)
  • Get the First and Last Word from a String or Sentence in SQL (838)
  • How to select distinct rows in a datatable in C# (808)
  • How to make theater mode the default for Youtube (805)
  • Add Constraint to SQL Table to ensure email contains @ (580)
  • How to enable, disable and check if Service Broker is enabled on a database in SQL Server (579)
  • Average of all values in a column that are not zero in SQL (538)
  • How to use Map Mode for Vertical Scroll Mode in Visual Studio (505)
  • Find numbers with more than two decimal places in SQL (454)

Recent Posts

  • C#: Use String Interpolation Instead of Concatenation
  • C#: Use Tuples to Return Multiple Values from Methods
  • SQL: Use ISNULL and NULLIF for Smart NULL Handling
  • .NET Core: Use Data Annotations for Model Validation
  • Git: Use Git Clean to Remove Untracked Files
  • Ajax: Add Custom Headers to Fetch Requests
  • JavaScript: Use console.table to Display Arrays as Tables
  • HTML: Use Spellcheck Attribute to Enable Browser Spell Check
  • CSS: Use user-select to Prevent Text Selection
  • Windows 11: Use Snipping Tool for Instant Screenshots

Most Viewed Posts

  • Get the User Name and Domain Name from an Email Address in SQL (953)
  • How to add default value for Entity Framework migrations for DateTime and Bool (882)
  • Get the First and Last Word from a String or Sentence in SQL (838)
  • How to select distinct rows in a datatable in C# (808)
  • How to make theater mode the default for Youtube (805)

Recent Posts

  • C#: Use String Interpolation Instead of Concatenation
  • C#: Use Tuples to Return Multiple Values from Methods
  • SQL: Use ISNULL and NULLIF for Smart NULL Handling
  • .NET Core: Use Data Annotations for Model Validation
  • Git: Use Git Clean to Remove Untracked Files

Social

  • ErcanOPAK.com
  • GoodReads
  • LetterBoxD
  • Linkedin
  • The Blog
  • Twitter
© 2026 Bits of .NET | Built with Xblog Plus free WordPress theme by wpthemespace.com