JS scripts with defer property can't be loaded for some cases due to Jquery 3.1 core changes

Created on 28 June 2018, almost 7 years ago
Updated 8 June 2023, almost 2 years ago

Problem/Motivation

jQuery 3.1 includes changes that can affect attaching of behaviors by Drupal core drupal.js
The changes nicely described here:
https://github.com/jquery/jquery/issues/3271#issuecomment-320927335
Briefly, JS scripts with defer property cannot be executed because of poor internet connection for example.
The line
Drupal.attachBehaviors(document, Drupal.settings);
can be executed before loading of JS scripts with behaviors for some conditions.

I've faced with the issue at "heavy" sites with a lot of inernal, external JS scripts. I can't describe steps to reproduce here.

Proposed resolution

Proposed resolution described here https://developer.mozilla.org/en-US/docs/Web/API/Document/readyState
and possible patch for drupal.js can be the following or something like this:

document.onreadystatechange = function () {
  if (document.readyState === "complete") {
    Drupal.attachBehaviors(document, Drupal.settings);
  }
}

instead of

$(function () {
  Drupal.attachBehaviors(document, Drupal.settings);
});

Remaining tasks

Discussion, implementation

References

https://github.com/jquery/jquery/issues/3271
https://developer.mozilla.org/en-US/docs/Web/API/Document/readyState

πŸ› Bug report
Status

Needs review

Version

7.0 ⚰️

Component
JavascriptΒ  β†’

Last updated 1 day ago

Created by

πŸ‡΅πŸ‡±Poland dwebpoint

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024