From my reading it seems there is a good case for loading scripts like jquery and dependencies into the footer as a preference if possible; however 2 things confuse me which. Firstly the default for wp_enqueue_script() is to put the script in the footer and second (and possibly related) there is a line from the codex
Note that you have to enqueue your script before wp_head is run, even if it will be placed in the footer.
Is this to say that even if the script is set to load into the footer it still loads early on and so we loose several of the advantages of footer placement?
Edit – Just in case the above incorrect statement confuses anyone in future. I realised since that I’d been reading the codex wrong and that the default for wp_enqueue_script()
is NOT to put the script in the footer