Chapter 19

Using jQuery to Handle AJAX

In This Chapter

arrow Using the jQuery AJAX object to perform tasks with JavaScript

arrow Performing server side programming for AJAX projects

arrow Retrieving data from the server in a PHP/JavaScript scenario

Chapter 17 provides your first view of Asynchronous JavaScript and XML (AJAX). In that chapter, you obtain access to a simple file using straight JavaScript in the section on performing AJAX tasks using JavaScript. The section on making AJAX easier with jQuery in the same chapter shows how much easier it is to perform the task using jQuery. These simple examples demonstrate the usefulness of AJAX to the developer. This chapter takes the next step and introduces you to the full power of AJAX when coupled with the jQuery library.

Most AJAX scenarios don’t deal with files on the server. In most cases, the server is asked to perform some type of data search or data manipulation and then return the results for display on the page. Keeping requests small and data transfers short helps improve overall efficiency so that everyone gets better results. AJAX helps make the entire process faster and easier. However, AJAX represents only part of the process. The server ...

Get HTML5 Programming with JavaScript For Dummies now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.