I'm having to work on some old code at work and have a standard document.ready like with some third-party code:
<script src='http://thirdparty.com/some.js'></script>
$( document ).ready(function() {
console.log( "ready!" );
});
I know that jQuery says document.ready fires after the DOM is ready but would it have to wait for ALL 3rd party code to load? I'm pretty sure this doesn't include Promises / Network code though, right?