So, what's the DL on Ajax?
Moderator: General Moderators
So, what's the DL on Ajax?
What is so great about AJAX? What kind of functionality does it have that others do not have? I was always under the impression that java is kinda not good. Could you achieve the same goals using something like Ruby on Rails in conjunction with other elements (like XML)? What's the downlow on it. Any opinions or experiences would be appreciated.
AJAX isn't Java, it's Javascript. It's a client-based language, and using it in this content is just a means to have updateable, dynamic content on the client's browser without having to send heavy requests to the server (heavy as in, the server doesn't have to return the entire contents of the page, just small bits of XML that is parsed in JS). It's good for when you want to update things on the page and you don't want to refresh the page.
I use it a lot for administrative pieces, like setting user accounts to active/inactive, auto-fill/suggest search boxes, etc. Google Suggest is an example of AJAX in action. Another would be http://www.live.com, or http://www.google.com/ig (personalized Google start page).
I use it a lot for administrative pieces, like setting user accounts to active/inactive, auto-fill/suggest search boxes, etc. Google Suggest is an example of AJAX in action. Another would be http://www.live.com, or http://www.google.com/ig (personalized Google start page).