W3C and/or accepted standards for loading non-visual web page resources

96 Views Asked by At

A few years ago I was employed to develop web front-ends for client applications to W3C/AA compliant standards. I was told that CSS, JS and other non-visual/non-presentational content should ALWAYS be kept in the head tag.

Example

<!DOCTYPE html>
<html>
<head>
    <link type="text/css" rel="stylesheet" href="site.css" />
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript" src="site.js"></script>
    <script type="text/javascript">
        $(document).ready(function() {
            // Code here...
        });
    </script>
<head>
<body>
    <div class="container">
        ...
    </div>
</body>
</html>

This approach has always worked for me, but In my current role I've been asked to move the CSS and JS references all to the bottom of the document for performance/execution reasons

Example

<!DOCTYPE html>
<html>
<head>
    ...
<head>
<body>
    <div class="container">
        ...
    </div>
    <link type="text/css" rel="stylesheet" href="site.css" />
    <script type="text/javascript" src="jquery.js"></script>
    <script type="text/javascript" src="site.js"></script>
    <script type="text/javascript">
        $(document).ready(function() {
            // Code here...
        });
    </script>
</body>
</html>

I was told that doing this didn't break any compliance or acceptability standards and allowed the site to load faster in some cases, however this caused more problems than it fixed.

Therefore I would like to know if I should stick by my decision to keep these resources in the head tag, or, on the other hand if there is any compelling argument for having resource tags at the bottom, or scattered about the document?

1

There are 1 best solutions below

3
On BEST ANSWER

link elements can’t appear in the body element (unless they are used for Microdata or RDFa). So your <link type="text/css" rel="stylesheet" href="site.css" /> has to be a child of the head element.

script elements can appear in the body. It depends on the script and your document if it makes sense to place the script element as last child of the body. See, for example, the questions

If the script element has a src attribute (i.e., the script is imported from an external file), you could use the async and defer attributes to control its execution:

  • async:

    the script will be executed asynchronously, as soon as it is available

  • defer:

    the script is executed when the page has finished parsing

  • default (i.e., neither async nor defer):

    the script is fetched and executed immediately, before the user agent continues parsing the page

  • async + defer:

    cause legacy Web browsers that only support defer (and not async) to fall back to the defer behavior instead of the synchronous blocking behavior that is the default