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
You should be able to use holdReady to do this. As long as it is included before your ready events, you can run your own code and then trigger the other ready events.