Javascript not loading after the document ready

Javascript runs as soon as it’s loaded, you need to wait for the DOM ready event, and you do that in JS, not in WP:

jQuery(document).ready(function(){
    /* your code here */
});