Use this tag for questions related to deferred loading of script, style and other resources into a web page.
Questions tagged [deferred-loading]
98 questions
66
votes
8 answers
CSS delivery optimization: How to defer css loading?
I am trying to optimize the CSS delivery following the google documentation for developers https://developers.google.com/speed/docs/insights/OptimizeCSSDelivery#example
As you can see in the example of inlining a small CSS file the critical CSS in…

RafaSashi
- 16,483
- 8
- 84
- 94
56
votes
6 answers
DEFER or ASYNC allowed on a stylesheet include?
I know script files can use the DEFER and ASYNC keywords on a resource include. Do these keywords also work for stylesheet (i.e., CSS) includes?
Syntax would presumably be:

Doug
- 5,116
- 10
- 33
- 42
42
votes
2 answers
Defer loading and parsing of PrimeFaces JavaScript files
While analyzing the performance of a JSF 2.1 + PrimeFaces 4.0 webapp with Google PageSpeed, it recommends among others to defer parsing of JavaScript files. On a test page with a and a form with and which…

BalusC
- 1,082,665
- 372
- 3,610
- 3,555
38
votes
5 answers
Speed up page load by deferring images
I am creating a page which will contain a lot of large sized images, so naturally I want to make sure the page loads without too much trouble. I read this article here http://24ways.org/2010/speed-up-your-site-with-delayed-content
The method of…

Huangism
- 16,278
- 7
- 48
- 74
30
votes
2 answers

Bradley Flood
- 10,233
- 3
- 46
- 43
13
votes
3 answers