I\'m working on a codebase with multiple blocks of code setting some behavior on document.ready() (jQuery). Is there a way to enforce that one specific block is called befor
As @jfriend00 mention that ready callbacks are called in the order they were registered.
So even if this code block called on the beginning, you can set another callback in it so it'll be executed on endmost.
jQuery(document).ready(function(){
jQuery(document).ready(function(){
// This block will be executed after all ready calls.
});
});