Host jQuery at Google (with Intellisense support)


tp_vol3_007 While reviewing my RSS feed this morning, I found this article:

3 reasons why you should let Google host jQuery for you | Encosia

I had no idea!

The three reasons are:

  1. Decreased Latency
    Google will serve the data from the closest server
  2. Increased Parallelism
    More threads are available to download content specific to your application instead of downloading this common library.
  3. Better caching
    They may already have the library on their computer.

Here is the code you should be using to include jQuery in your application to use the Content Delivery Network at Google:

    <script type="text/javascript"
    src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js">
    </script>

The one issue you may have to deal with is that if you are using the intellisense files for Visual Studio, you will need to find some alternate method.  Here’s one:

First, place the reference to your local jquery files like we’ve been doing:

<script src="js/jquery-1.2.6.min.js"
  type="text/javascript"></script>

But then in the onload event, put in code to replace the src attribute so that it will get the js file from google:

protected void Page_Load(object sender, EventArgs e)
{
 foreach (Control c in Page.Header.Controls)
 {
  if (c.GetType() == typeof(LiteralControl))
   ((LiteralControl)c).Text =
    ((LiteralControl)c).Text.Replace(
    "src=\"js/jquery-1.2.6.min.js\"",
    "src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js\"");
 }

}

This code might be optimized a bit better.  For example, by making sure the js reference is the first element in your header, you could skip the foreach loop and just grab the first element out of the controls collection.

 


Other post in jQuery
Ads by Lake Quincy Media

Other Related Items:

Harold Import Company Avo SaverHarold Import Company Avo SaverKeep your cut Avocado fresh with this patent pending problem solver. Simply place a cut avocado with the pit face down onto the base of the Avo Saver and secure it with the adjustable strap.
Reusable Screen Protector for HTC Android G1 Google PhoneReusable Screen Protector for HTC Android G1 Google PhoneNOTE: Please do not perform installation in a dusty environment. Please read installation steps from the two tabs on the front and back protector laye... Read More >
Family Atlas Genealogy Mapping SoftwareFamily Atlas Genealogy Mapping SoftwareFamily Atlas lets users create custom family maps based on their own genealogy data. Family Atlas users view their family information on an interacti... Read More >

If you're new here, you may want to subscribe to my RSS feed. Thanks for visiting!

Related Post

One Response to “Host jQuery at Google (with Intellisense support)”

DotNetNuke Sponsor

 

Most Valuable Blogger
Sponsor