AJAX
  Home arrow AJAX arrow Page 3 - Using the google.load() Method with Google`s Ajax Libraries API
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
AJAX

Using the google.load() Method with Google`s Ajax Libraries API
By: Alejandro Gervasio
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 4
    2009-01-26


    Table of Contents:
  • Using the google.load() Method with Google`s Ajax Libraries API
  • Review: delivering the Prototype JavaScript library without compressing its source files
  • Serving the jQuery library without using compression
  • Source code for the sample Ajax application

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Using the google.load() Method with Google`s Ajax Libraries API - Serving the jQuery library without using compression
    ( Page 3 of 4 )

    By using a similar approach to the example created in the previous section, it’s also feasible to serve, via the Google API, several JavaScript libraries without using compression. Of course, if you already grasped how to do this when using Prototype, then surely you won’t have major problems understanding how the same process can be performed with the jQuery package.

    So it's time to move past theory and demonstrate with a functional code sample how to accomplish the aforementioned task. Thus, below I have rewritten the client-side part of the Ajax application built in the prior section, which this time uses the jQuery library. Here it is:


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

    <title>Reading file contents with jQuery library (uses Google API)</title>

    <style type="text/css">

    body{

    padding: 0;

    margin: 0;

    background: #fff;

    }

    h1{

    font: bold 18pt Arial, Helvetica, sans-serif;

    color: #000;

    }

    #filecontents{

    width: 600px;

    padding: 10px;

    border: 1px solid #999;

    font: normal 10pt Arial, Helvetica, sans-serif;

    color: #000;

    }

    </style>

    <script src="http://www.google.com/jsapi"></script>

    <script>

    // load jQuery library with Google API (loads uncompressed source file)

    google.load("jquery","1.2",{uncompressed:true});

    google.setOnLoadCallback(function(){

    $("#btn").click(function(){

    $.get("read_file.php",function(fileContents){$("#filecontents").html(fileContents);});

    });

    });

    </script>

    </head>

    <body>

    <h1 id="header">Reading file contents with jQuery library (uses Google API)</h1>

    <p><input type="button" id="btn" value="Read File Now!" /></p>

    <div id="filecontents"></div>

    </body>

    </html>


    That was pretty simple to read and grasp, wasn’t it? As shown above, now this sample Ajax application utilizes the jQuery library to fetch the contents of a text file in the web server. The most relevant thing to stress here is that this JavaScript package is downloaded in a completely uncompressed form, because it was specified in that way when calling the “google.load()” method.

    Definitely, understanding how to serve the different libraries via the Google API without using compression is a no-brainer process that doesn’t require any further explanations. Therefore, in the final part of this tutorial I’ll be listing for you the complete source code corresponding to the Ajax program built earlier, so you can tweak and test it more easily.

    Click on the following link and proceed to read the final section, please.



     
     
    >>> More AJAX Articles          >>> More By Alejandro Gervasio
     

       

    AJAX ARTICLES

    - PHP AJAX Form Validation
    - Completing a User-Defined CSS Website with P...
    - Create a User-Defined CSS Website with PHP
    - Build A Better Twitter Chat Client Than Cham...
    - Using Division Equations to Make Web Forms S...
    - Using Integer Multiplication to Protect Web ...
    - Using Simple Checksums for Web Form Verifica...
    - Protecting Web Forms with AJAX
    - Using Prototip with AJAX
    - Using Prototip
    - Using the google.load() Method with Google`s...
    - How to Handle Ajax Errors
    - Uncompressing Source Files with Google`s AJA...
    - Using the jQuery Framework with Google`s Aja...
    - Using Google`s Ajax Libraries API




    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek