AJAX increases server load?
I don’t understand this question… AJAX is shorthand for tools and design practices that allow the user to interact with the server without reloading an entire web page. A good example is the kind of interface provided in Gmail, where message information is loaded into the interface without needing to reload every element on the page. To say that AJAX increases server load would indicate that AJAX is creating some sort of server transaction that didn’t exist before. Let’s see, what is AJAX used for? A person clicks on a link…the browser requests information from the server…the server interprets the request, pulls the data, and sends it back…the browser interprets the code and displays it. ...