You can accomplish *some* of the same goals of putting JS at the bottom by using 'defer', like:
<script src="script.js" type="text/javascript" defer="defer"></script> This does not defer script 'loading' in all browsers, but does defer 'execution', which can noticeably improve performance in some cases. Here is a good summary of how defer works... http://www.websiteoptimization.com/speed/tweak/defer/ /Kevin On Feb 7, 7:55 am, weepy <[email protected]> wrote: > The Yslow plugin by Yahoo suggests putting Javascript at the bottom of > the page. > > Do the jQuery devs recommend the same ? > > weepy --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en -~----------~----~----~----~------~----~------~--~---
