Search
Go

Shop by category
 
Ajax: The Definitive Guide
Email a friendView larger image

Ajax: The Definitive Guide

List Price: $49.99
Our Price: $31.49
You Save: $18.50 (37%)
Shipping: This item ships for FREE with Super Saver Shipping.
SKU:

2150751056

In Stock
Usually ships in 1 business days

Note: Item may be sold and shipped by another company. Learn more.
Product Promotions:
  • Buy $50 in qualifying physical textbooks, get $2 in Amazon MP3 Credit.  Here's how (restrictions apply)
Description:

Is Ajax a new technology, or the same old stuff web developers have been using for years? Both, actually. This book demonstrates not only how tried-and-true web standards make Ajax possible, but how these older technologies allow you to give sites a decidedly modern Web 2.0 feel.

Ajax: The Definitive Guide explains how to use standards like JavaScript, XML, CSS, and XHTML, along with the XMLHttpRequest object, to build browser-based web applications that function like desktop programs. You get a complete background on what goes into today's web sites and applications, and learn to leverage these tools along with Ajax for advanced browser searching, web services, mashups, and more. You discover how to turn a web browser and web site into a true application, and why developing with Ajax is faster, easier and cheaper.

The book also explains:

  • How to connect server-side backend components to user interfaces in the browser
  • Loading and manipulating XML documents, and how to replace XML with JSON
  • Manipulating the Document Object Model (DOM)
  • Designing Ajax interfaces for usability, functionality, visualization, and accessibility
  • Site navigation layout, including issues with Ajax and the browser's back button
  • Adding life to tables & lists, navigation boxes and windows
  • Animation creation, interactive forms, and data validation
  • Search, web services and mash-ups
  • Applying Ajax to business communications, and creating Internet games without plug-ins
  • The advantages of modular coding, ways to optimize Ajax applications, and more
This book also provides references to XML and XSLT, popular JavaScript Frameworks, Libraries, and Toolkits, and various Web Service APIs. By offering web developers a much broader set of tools and options, Ajax gives developers a new way to create content on the Web, while throwing off the constraints of the past. Ajax: The Definitive Guide describes the contents of this unique toolbox in exhaustive detail, and explains how to get the most out of it.

Product Details:
Author: Anthony T. Holdener III
Paperback: 982 pages
Publisher: O'Reilly Media
Publication Date: February 01, 2008
Language: English
ISBN: 0596528388
Product Length: 9.2 inches
Product Width: 6.9 inches
Product Height: 2.1 inches
Product Weight: 3.35 pounds
Package Length: 9.13 inches
Package Width: 7.09 inches
Package Height: 1.97 inches
Package Weight: 3.09 pounds
Average Customer Rating: based on 15 reviews
Customer Reviews:
Average Customer Review: 3.5 ( 15 customer reviews )
Write an online review and share your thoughts with other customers.


Most Helpful Customer Reviews

61 of 71 found the following review helpful:

3Exhaustive but flawedMar 27, 2008
By Michael Macrone
While "Ajax: The Definitive Guide" is certainly exhaustive, it's hard to have confidence in a text so riddled with errors. Other O'Reilly titles I've purchased in the last few years suffer from the same problem: very poor copy editing. In a "Definitive Guide," this is inexcusable.

Furthermore, he author's decision to rely on the Prototype framework is misguided. It saves a few lines of code per page, but one expects a "Definitive Guide" to define, explore, and use the actual objects and methods defined by the language itself, not those defined in one of many, many external libraries.

It is also somewhat comical to read on page 10 that developers, rather than browser vendors, "are to blame for not adopting standards" and that they are "stuck with the mentality of the 1990s, when browser quirks mode, coding hacks, and other tricks were the only things that allowed code to work in all environments," and then to read on page 191 that "Yes, there are always caveats in the world of standards compliance" and that "Example 7-2 will not work in Internet Explorer because Internet Explorer does not support the CSS2 rules that are used to make this work." And on page 187 that "Internet Explorer does not natively support :hover on elements other than . For this reason, instead of using the CSS that will work for all other browsers, we must use this...."

(It's hard not to laugh, too, at a sentence that begins with "To take the file menu example fully to the Web 2.0 level....")

By the time all the errata are corrected and a second edition issued, it might be appropriate for the author to wag his finger at developers who can't yet afford to to be totally standards-pure, but by then the faddish jargon will seem very dated.

And until O'Reilly starts employing copy editors, I'm not buying the first edition of any title they release.

22 of 25 found the following review helpful:

4Loads of Code; Good ValueFeb 27, 2008
By Brett Merkey
§
There is a LOT of code in this 950 page book. I guess there is something here for everyone because there is code not directly related to Ajax but is directed to HTML structure or CSS presentational aspects or to frameworks that may include Ajax conveniences.

In fact, the amount of code may interfere with the author's object of appealing to two very different types of people with this book: Web developers and project managers looking for a high-level view. Except for some intro chapters and the odd breather between 10-15 page code listings, I don't think any project managers *I* have worked with would extract much from the book.

The book has 4 sections:
Part 1 - Ajax Fundamentals: the basic technologies that could form the core of a typical Ajax application.

Part 2 - Ajax Foundations: approaches to standards-compliant structure, separation of the presentational layer and client-side behaviors. Code code code!

Part 3 - Ajax in Applications: describes the specific implementations of these technologies into Web applications. More code!

Part 4 - Wrapping Up: tips on optimization.

In addition, there are some reference appendices on XML and XSLT; on JavaScript frameworks; on Ajax implementation risks; and most interestingly, a catalog of freely available Web service APIs.

One thing I did not like about the code listings was the use of Prototype style $() function syntax. This means when I see something like:
var titleText = $('title').firstChild;
I had to check whether .firstChild was a reference to a Prototype object or a reference to the standard DOM object. If the standard object, it would have been a whole lot clear just to have written document.getElementById().

The book index is actually pretty good. With 950 pages stuffed with content, you will probably be thankful for that!
§

11 of 12 found the following review helpful:

4Generally on the markSep 08, 2008
By The Commodore
Let me preface this review by saying that I have never been a fan of thick programming or computer books. If a book is 2 inches thick, I often find only 1/2 to 1 inch of it to be valuable. However, most of Ajax: The Definitive Guide seems to hit the mark. Since Ajax development is such an expansive, and rapidly changing, topic, it is perhaps a good idea to shoot for too much rather than too little information. Most developers will find this book not only a good learning guide, but also a handy reference for a wide variety of coding needs.

One thing you will notice when scanning through this book is that there is a *lot* of code. The author is not afraid to publish pages and pages of Ajax code for readers to consider, copy and hack up to create their own applications. Not all is useful in real-world applications, however, since some of it is not cross-browser compatible (most often failing in Internet Explorer).

The first three chapters are largely an introduction to Web technologies, and can be skipped by most developers. In Chapter 4, the author introduces the XMLHttpRequest object, the object that puts the "asynchronous" in Ajax (an acronym for "asynchronous JavaScript and XML"). He details how to make simple applications that pull information from server-based XML or JSON, an alternative data format well suited to Ajax. Chapter 5 deals with Document Object Model programming, a critical task that allows developers to change the look and content of Web pages that have already been rendered.

After these foundational concepts, Part 2 contains nine chapters that provide specific solutions to common Web programming needs. Readers learn the ins and outs of creating Ajaxified navigation, forms, lists, tables, frames, etc.

Part 3, called "Ajax in Applications," goes a step farther by showing the reader how to integrate Ajax with other applications. Chapter 16, for example, shows the reader how to incorporate Ajaxified Google search into a site and even include such dynamic features as search hinting. Other chapters in this section introduce Web services, Web APIs and even show how to create Ajax animated games.

Part 4 contains two chapters that show readers how to create more modular code, and how to create faster, more compressed code. This is critical considering the importance of speed to the user experience in Ajax.

One of the book's shortfalls is the lack of information about the various Ajax libraries. Libraries and frameworks provide solutions to common programming needs: ready-made widgets, improved JavaScript programming notation, useful objects and easy cross-browser compatibility. The author includes a brief introduction to the libraries in chapter 4 and a reference in Appendix B. There are also mentions of the major libraries scattered throughout the chapters. However, it would be worthwhile to include at least a chapter devoted to each of the major libraries such as Dojo, Prototype and jQuery.

11 of 14 found the following review helpful:

1I must have forgotten to pick up the kitchen sink. Oh no i didn't it's this book.Jul 20, 2009
By Steffan McMurrin
Assuming you desire to learn AJAX then the short answer is to hit that back button and try something else.

If however you want to have a brief guide of the internet, computers, and various programming languages unrelated to AJAX then you should probably hit the back button and find books related specifically to those topics.

I am a programmer and I know how to use AJAX, which for the layman is a way to refresh content on a website without reloading the page. This book I read through because I figured it was the definitive guide, and might be able to provide some insights that I was unaware of regarding AJAX.

What I received for example, in chapter 21 was "internet games without plugins" which being a gamer i found an interesting title. I thought wow okay fine, how to use AJAX to make games without plugins.. that makes sense cause we don't have to refresh the page anymore! Instead was a history of different game genres and not a quip about how to program for them.

The large quantities of code have already been mentioned, and I thought there might have been some exaggeration. There is not. However, I thought well great... now i'll see lots of AJAX examples. Nope, nothing to do w/ajax.. everything to do with css,html,some javascript .. apis, mashups .. what?

Anyway, i just hope that i can save one person from giving away their money for a piece of junk that this book represents. Unless of course learning w/some sort of shotgun analogy then go right ahead.

1 of 1 found the following review helpful:

4Not a Good Starter Book For AjaxJan 22, 2010
By Veil_Lord
I got this book to learn a little AJAX; I'm often curiuos how stuff works behind the scenes. I've been a fan of this series for years and loved JavaScript: The Definitive Guide, but I found this really hard to get through. It's sort of like reading the phone book, full of information, but dry as a bone. If you don't have a pretty good knowledge of XML, CSS, and XHTML already you won't learn enough here to help you.

Let me be clear, this is not a book that will teach you some AJAX tricks for your website. I find that a better way to learn, by seeing the little bits and then building to bigger and better things. I made it about half way through before I just lost interest and it's been sitting on the table ever since gathering dust ever since. If you're a devloper or really know what you're doing already and want to gain some better knowledge or some new ideas, then this is a good book. If you're just starting out or a casual user then you should definitely start with a different book.

For CSS, CSS: The Missing Manual was a well written and easy read. If that series ever does an AJAX book or just for learning the supporting pieces of AJAX bit by bit, you might try those books.

See all 15 customer reviews on Amazon.com
About Us   Contact Us
Privacy Policy Copyright © , Security Books. All rights reserved.
Web business powered by Amazon WebStore