Ext.onReady() vs $(document).ready()

Ext.onReady() and $(document).ready() have nothing to do about either library being loaded as the current accepted answer suggests.

According to the documentation both are about the DOM being loaded and ready.

Documentation

  • Ext JS: https://docs.sencha.com/extjs/6.7.0/modern/Ext.html#method-onReady
  • jQuery: https://api.jquery.com/ready/

An Answer to Your Case

It's possible that you're loading the Ext JS resource after your script fires, but jQuery is already loaded above your script. Thus using jQuery to wait until the DOM is loaded guarantees that the DOM has been loaded and thus by then Ext JS has also been loaded.

If you try to invert them and us Ext JS first you'll likely have an error.

According to the documentation they're doing the same thing so you shouldn't need to nest them

A Fix for this Scenario

If you are loading your resources like so:
  1. jQuery
  2. Your Script
  3. Ext JS
It would be best to load them in this order:
  1. jQuery and/or Ext JS
    • Order shouldn't matter as they can stand by themselves without requiring one or the other
  2. Your Script

Additional Explanation

Due to how the DOM is loaded and parsed by the time it reads your script it guarantees that jQuery and Ext JS are available. This is why you can reference their libraries in your script; you're not waiting for them to load they're already there and available to be used which is why you can call them and use their ready calls.

You need to use the ready event of one of the libraries to guarantee that all elements are loaded into the DOM and available to be accessed. You also shouldn't try to add anything to the DOM until it's ready although you can append to current elements that have been loaded above your element/script tag. It's just best practice to not touch the DOM until it's finished loading.

Additional Explanation Nobody Asked For 🔥

Handling DOM ready is more involved than these libraries make it which is why they both include such an event handler.

The following link explains with vanilla JS how you cannot only add your event listener you also need to check if it has already fired when you go to add your event listener for DOM ready. This is a common case to handle with eventing - where you create a race condition where an event may fire before you start listening for it - then you don't know that it ever happened without another way to check.

https://developer.mozilla.org/en-US/docs/Web/Events/DOMContentLoaded#Checking_whether_loading_is_already_complete


No they're not the same, the first one will proc when your jQuery library is loaded, the Ext.onReady(.. will proc when your ExtJS library is loaded.

If you want to combine them you could do something like this:

var extReady = false;
var jQueryReady = false;

var librariesReady = function () {
    if (jQueryReady && extReady) {
        //They're both ready
    }
};

$(document).ready(function () {
    jQueryReady = true;
    librariesReady();    
});
Ext.onReady(function () {
    extReady = true;
    librariesReady();
});