Most Helpful Customer Reviews
|
|
52 of 54 people found the following review helpful:
2.0 out of 5 stars
Great "dummies" book ..., October 20, 2006
If you are a complete beginner with respect to many of the skills needed for Ajax: HTML, CSS, DOM, JavaScript, then this book might be for you. All of the O'reilly Head First/Head Rush series are excellent teaching books and do a wonderful job at teaching skills in small bite-size chunks. Lots of pictures, exercises and games. This is about as fun as a book can get.
But once you've read the book, you'll realize that you really didn't cover much ground at all. 400 pages of Head Rush Ajax is about the same amount of Ajax technical material as 40 pages of Ajax in Action. All those fun pictures and games take up a lot of pages! Only the most basic topics of Ajax are covered. Much of the book is wasted explaining web-development 101 level subjects...
So it wasn't possible for me to give the book 2 different ratings. As a pure beginner's book - this is a 4 or 5 star book. But if you already know HTML, HTTP, DOM, and CSS -- then this book becomes a 2 star Ajax book because it teaches so little about Ajax.
|
|
|
39 of 41 people found the following review helpful:
3.0 out of 5 stars
Not for experienced web developers, May 8, 2006
I was casually browsing Ajax books in the local Borders store, and was pleasantly surprised to find Head Rush Ajax. Having been a great fan of Head First Design Patterns, I decided to buy Head Rush Ajax on the spot. But I have to say I was a tad disappointed, and returned the book.
Likes:
------
1. For people new to the Head First teaching approach, there's a high probability that they will like and embrace this style. People already familiar with it will know what to expect and won't be disappointed.
2. Each major concept of Ajax (Asynchronous requests, GET, POST, XML, DOM) has been explained in a separate chapter with examples that make sense.
3. The author clearly states that the intention is only to teach the basic minimum needed to understand and build an Ajax application, and he lives up to that promise.
Dislikes:
---------
1. Even though the author states his intention about teaching the basic minimum early on, he takes far too many pages to do the same. An experienced web developer can easily get all that he/she can from this book in a single day of reading. At the end, I was left with the feeling "Is that it? For all these pages?"
2. On a few occasions, I felt the Head First approach had been stretched way beyond limit. The notion of repeating a piece of information so that it sticks in the brain has been done one time too many. It has been done right in Head First Design Patterns, but not here.
|
|
|
104 of 118 people found the following review helpful:
5.0 out of 5 stars
Good first book on Ajax in the "Head First" tradition, April 10, 2006
Asynchronous JavaScript And XML, or its acronym, Ajax, is a Web development technique for creating interactive web applications. The intent is to make web pages feel more responsive by exchanging small amounts of data with the server behind the scenes, so that the entire Web page does not have to be reloaded each time the user makes a change. This is meant to increase the Web page's interactivity, speed, and usability.
The Ajax technique uses a combination of:
1. XHTML (or HTML), CSS, for marking up and styling information.
2. The DOM accessed with a client-side scripting language, especially ECMAScript implementations like JavaScript and JScript, to dynamically display and interact with the information presented.
3. The XMLHttpRequest object to exchange data asynchronously with the web server. In some Ajax frameworks and in certain situations, an IFrame object is used instead of the XMLHttpRequest object to exchange data with the web server.
4. XML is commonly used as the format for transferring data back from the server, although any format will work, including preformatted HTML, plain text, JSON and even EBML.
Thus, like DHTML, Ajax is not a technology in itself, but a term that refers to the use of a group of technologies together.
"Head Rush Ajax" uses the head-first approach that has worked so well in books on Java, Design Patterns, and HTML. This book is aimed at teaching designers, JavaScript programmers, and your 'everyday' web developer about Ajax. Many of the other books on Ajax are focused on little widgets and gadgets and tricks. However, none of them seem to actually talk about the web browser, asynchrony, and really focus on what Ajax is. Ajax may be a combination of technologies that have been around for a while, but that hardly means that everybody really gets what all those technologies are. So this book talks about JavaScript, and the web browser, asynchronous requests, and the Document Object Model, rather than blazing through that in 65 pages and spending 400 pages talking about esoteric user interface patterns and server-side languages. This is a book that a normal web developer or even a motivated designer can pick up, and get some light bulbs to turn on.
Readers will have their first working application before they finish Chapter one. This book skips all the hype, talks about what the web browser is, and how it's a far richer and more important player in web applications - and especially in asynchronous applications - than most people realize.
I highly recommend it to readers who are intimidated with the alphabet soup of acronyms and technologies that web development has become.
Amazon does not show the table of contents, so I do that here with a short description of each chapter:
1. Using Ajax - A short overview of the technology.
2. Speaking the Language - Discusses asynchronous JavaScript. Learn how to send requests on different browsers, master "ready states", "status codes", and some extra dynamic HTML tricks.
3. She Blinded Me with Asynchrony - Learn how to send users' requests to the server while users continue to work while waiting on a response.
4. Web Page Forestry - Using the Document Object Model you start writing code that updates web pages on the fly.
4.5 A Second Helping - Shows more DOM via a nifty DOM-based application. Learn some new event handlers, how to change a node's style, and create a user-friendly dynamic application.
5. Saying More with POST - Eliminates send(null) and shows how to send more data to a server in your asynchronous requests.
6. More Than Words Can Say - Talks about using XML in your requests.
7. A Fight To the Finish - Talks about JSON and XML, two different formats for transmitting data in asynchronous requests.
A.1 Extras - Ajax toolkits
A.2 Ajax and DOM Utilities - Utility code that may have seemed advanced when you first saw it in the book.
|
|
|
Most Recent Customer Reviews
|