What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T20:25:46Z http://stackoverflow.com/feeds/question/208869 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho 14 What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? Vilmantas Baranauskas 2008-10-16T14:50:30Z 2009-05-14T18:42:53Z <p>Google hosts some popular JavaScript libraries at: <a href="http://code.google.com/apis/ajaxlibs/" rel="nofollow">http://code.google.com/apis/ajaxlibs/</a></p> <p>According to google:</p> <blockquote> <p>The most powerful way to load the libraries is by using google.load() ...</p> </blockquote> <p>What are the real advantages of using </p> <p><code>google.load("jquery", "1.2.6")</code></p> <p>vs.</p> <p><code>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"&gt;&lt;/script&gt;</code></p> <p>?</p> http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho/208909#208909 1 Answer by James Curran for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? James Curran 2008-10-16T14:58:01Z 2008-10-16T14:58:01Z <p>It lets Google change the URL (but they can't since the URL method is already established)</p> <p>In theory, if you do several google.load()s, Google can bundle then into one file, but I don't think that is implemented.</p> http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho/208931#208931 2 Answer by d8uv for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? d8uv 2008-10-16T15:05:58Z 2008-10-16T15:05:58Z <ol> <li>It allows you to <a href="http://code.google.com/apis/ajax/documentation/#Dynamic" rel="nofollow">dynamically load</a> the libraries in your code, wherever you want.</li> <li>Because it lets you switch directly to a new version of the library in the javascript, without forcing you to rebuild/change templates all across your site.</li> </ol> http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho/209413#209413 1 Answer by aemkei for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? aemkei 2008-10-16T16:55:34Z 2008-10-16T16:55:34Z <p>You might want to load a library only under special conditions. </p> <p>Additionally the google.load method would speed up the initial page display. Otherwise the page rendering will freeze until the file has been loaded if you include script tags in your html code.</p> http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho/263206#263206 8 Answer by Eric Caron for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? Eric Caron 2008-11-04T19:52:50Z 2008-11-04T19:52:50Z <p>Aside from the benefit of Google being able to bundle multiple files together on the request, there is no perk to using google.load. In fact, if you know all libraries that you want to use (say just jQuery 1.2.6), you're possibly. making the user's browser perform one unneeded HTTP connection. Since the whole point of using Google's hosting is to reduce bandwidth consumption and response time, the best decision - if you're just using 1 library - is to call that library directly.</p> <p>Also, if your site will be using any SSL certificates, you want to plan for this by calling the script via Google's HTTPS connection. There's no downside to calling a https script from an http page, but calling an http script from an https page will causing more obscure debugging problems than you would want to think about.</p> http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho/401454#401454 2 Answer by naetuir for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? naetuir 2008-12-30T20:46:21Z 2008-12-30T20:46:21Z <p>I find it's very useful for testing different libraries and different methods, particularly if you're not used to them and want to see their differences side by side, without having to download them. It appears that one of the primary reason to do it, would be that it is asynchronous versus the synchronous script call. You also get some neat stuff that is directly included in the google loader, like client location. You can get their latitude and longitude from it. Not necessarily useful, but it may be helpful if you're planning to have targeted advertising or something of the like. </p> <p>Not to mention that dynamic loading is always useful. Particularly to smooth out the initial site load. Keeping the initial "site load time" down to as little as possible is something every web designer is fighting an uphill battle on.</p> http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho/864576#864576 0 Answer by Tchalvak for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? Tchalvak 2009-05-14T17:10:44Z 2009-05-14T18:31:09Z <p>Personally, I'm interested in whether there's a caching benefit for browsers that will already have loaded that library as well. Seems like if someone browses to google and loads the right jQuery lib and then browses to my site and loads the right jQuery lib... ...both might well use the same cached jQuery. That's just a speculative possibility, though.</p> <p>Edit: Yep, at very least when using the direct script tags to the location, the javascript library will be cached if someone has already called for the library from google (e.g. if it were included by another site somewhere).</p> http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho/864983#864983 0 Answer by Andrew Noyes for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? Andrew Noyes 2009-05-14T18:36:10Z 2009-05-14T18:36:10Z <p>If you were to write a boatload of JavaScript that only used the library when a particular event happens, you could wait until the event happens to download the library, which avoids unnecessary HTTP requests for those who don't actually end up triggering the event. However, in the case of libraries like Prototype + Scriptaculous, which downloads over 300kb of JavaScript code, this isn't practical.</p> http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho/865018#865018 1 Answer by Si Philp for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? Si Philp 2009-05-14T18:42:53Z 2009-05-14T18:42:53Z <p>Dave Ward wrote an indepth post about this entitled 3 reasons why you should let google host jquery for you:</p> <p><a href="http://encosia.com/2008/12/10/3-reasons-why-you-should-let-google-host-jquery-for-you/" rel="nofollow">http://encosia.com/2008/12/10/3-reasons-why-you-should-let-google-host-jquery-for-you/</a></p> <p>broken down from the above post</p> <ol> <li>Decreased Latency</li> <li>Increased parallelism</li> <li>Better caching</li> </ol>