Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have the very best book by Douglas Crockford, "JavaScript: The Good Parts". I can recommend it to anyone who wants to dig into real good parts of JavaScript.

The question is, what is the best book on designing web applications with Ajax? What would you recommend reading?

Is there "Ajax: The Good Parts", a K&R on designing modern web applications?

share|improve this question
5  
You should probably clarify what you mean by "AJAX". Designing "modern" web applications? Or literally the nuts and bolts of async data transmission? – Ben Zotto Jul 18 '10 at 2:09
1  
w3.org/TR/XMLHttpRequest – meder Jul 22 '10 at 3:50
@pramodc84 this question is about specific kind of book – sanmai Jul 22 '10 at 9:49

closed as not constructive by Bill the Lizard Oct 9 '11 at 14:36

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

11 Answers

up vote 3 down vote accepted
+150

Not Specific to Ajax but Jquery in Action is a must read and has some great Ajax support!

share|improve this answer

Ajax in Action by Crane, Pascarello and James

It has design patterns, pitfalls, security and framework examples.

share|improve this answer
+1 Just because Eric Pascarello is a punk ;) – Josh Stodola Jul 27 '10 at 19:41
Five years old book though. – sanmai Jul 29 '10 at 3:20

Professional Ajax, 2nd Edition (Programmer to Programmer)

Talks about Ajax techniques, patterns, and use cases

Published by Wrox Press

share|improve this answer

I have Head First Ajax, bought it two years ago to my office and it brings a lot of help to me and my coworkers.

This is about the ajax core and it basis...

It's content is in the link.

share|improve this answer

Some good references are follow:

  1. Mozilla Ajax
  2. Google Ajax

Hope that helps in boosting your work... :)

share|improve this answer

Ajax Deign patterns

share|improve this answer
This is an excellent read! – Kim Prince Jan 24 '11 at 5:06

I think that the best way to use ajax is to use jQuery's AJAX libraries. They provide for cross browser compatabilty and take care of common AJAX tasks like processing JSON and handling caching. Therefore the best AJAX book is probably the best jQuery book with a good AJAX section like Learning jQuery: Better Interaction Design and Web Development with Simple JavaScript Techniques or jQuery in Action

share|improve this answer

http://en.wikipedia.org/wiki/The_Mythical_Man-Month

http://en.wikipedia.org/wiki/Design_Patterns

Ajax is just a tool, buzzword, whatever. Decide what your application needs to do, pick the best javascript framework for the job (e.g., jQuery, Dojo, YUI,etc...), and build it.

(Not trying to be snarky. Just don't think there's anything special about Ajax that you need a specific book for if you already have a handle on Javascript. )

share|improve this answer
I was just gonna say... it takes about 10 lines of code to ajaxify your app, but who knows... maybe you can write a book on where it's appropriate to use it? – Mark Jul 25 '10 at 1:54

none.

practice makes a man (in this case programmer) perfect

share|improve this answer
1  
"Experience keeps a school, yet fools will learn in no other." Benjamin Franklin – Matthieu Nov 1 '11 at 14:43

Not the answer you're looking for? Browse other questions tagged or ask your own question.