Are there any frameworks available to help speedup development with AJAX?
There are several browser-side frameworks available, each with their own uniqueness… Is Adaptive Path selling Ajax components or trademarking the name? Where can I download it? Ajax isn’t something you can download. It’s an approach — a way of thinking about the architecture of web applications using certain technologies. Neither the Ajax name nor the approach are proprietary to Adaptive Path. Should I use an HTTP GET or POST for my AJAX calls? AJAX requests should use an HTTP GET request when retrieving data where the data will not change for a given request URL. An HTTP POST should be used when state is updated on the server. This is in line with HTTP idempotency recommendations and is highly recommended for a consistent web application architecture. How do I debug JavaScript? There are not that many tools out there that will support both client-side and server-side debugging. I am certain this will change as AJAX applications proliferate. I currently do my client-side and server-sid