views:

168

answers:

4

Being someone new to AJAX, what would be a good place to start?

  • What books/tutorials would you recommend?
+1  A: 

i usually visit

http://ajaxian.com/

for any help i need on ajax.

clamp
i need a basic tutorial
vipinsahu
+2  A: 

W3Schools AJAX Tutorial will probably be your best bet for an online tutorial.

For a book, look at Head First Ajax

Edit based on Kim's answer: Once you've learned some of the basics about how Ajax works you should look into a JavaScript library such as jQuery. I still think learning the basics of how it works should be your first step though.

Dave Forgac
A: 

You probably don't want to program this in plain javascript but use a framework such as jquery. So you should look at their documentation, e.g.: http://docs.jquery.com/Ajax

Kim
+1  A: 

Mostly you should be using a javascript framework, and getting a book that cover that framework. I love jQuery, and the Packt reference guide to jQuery has been indispensable to me. There is also a good reference guide to jquery ui if you want to do graphical effects.

Marcus Ramberg