What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T20:25:46Zhttp://stackoverflow.com/feeds/question/208869http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho14What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? Vilmantas Baranauskas2008-10-16T14:50:30Z2009-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><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script></code></p>
<p>?</p>
http://stackoverflow.com/questions/208869/what-are-advantages-of-using-google-loadjquery-vs-direct-inclusion-of-ho/208909#2089091Answer by James Curran for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? James Curran2008-10-16T14:58:01Z2008-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#2089312Answer by d8uv for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? d8uv2008-10-16T15:05:58Z2008-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#2094131Answer by aemkei for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? aemkei2008-10-16T16:55:34Z2008-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#2632068Answer by Eric Caron for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? Eric Caron2008-11-04T19:52:50Z2008-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#4014542Answer by naetuir for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? naetuir2008-12-30T20:46:21Z2008-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#8645760Answer by Tchalvak for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? Tchalvak2009-05-14T17:10:44Z2009-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#8649830Answer by Andrew Noyes for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? Andrew Noyes2009-05-14T18:36:10Z2009-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#8650181Answer by Si Philp for What are advantages of using google.load('jQuery', ...) vs direct inclusion of hosted script URL? Si Philp2009-05-14T18:42:53Z2009-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>