I want to load a javascript file at the end of jquery.ready so that the code in my ready handler doesn\'t have to wait to execute until this large javascript file is loaded.
Use .getScript: http://api.jquery.com/jQuery.getScript/
$(document).ready(function(){ ... ... $.getScript("largejs.js"); });