Skip to Content
Head Rush Ajax
book

Head Rush Ajax

by Brett McLaughlin
March 2006
Beginner to intermediate
448 pages
13h 33m
English
O'Reilly Media, Inc.
Content preview from Head Rush Ajax
28
Chapter 1
So how’s it coming? Are we any
closer to getting my web report
back online? I’d love to know how
many boards I’ve sold.
Set up the request object to make a connection.
Request an updated number of boards sold.
Figure out what URL you need to connect to so
you can get updated board sales.
Create a new request object by calling the
createRequest() function.
Remember our checklist for getBoardsSold()?
You’re making pretty good progress in your code. Why
don’t you check off what you’ve got done?
updatePage()createRequest() getBoardsSold()
making requests with javascript instead of html
you’re on your way 4
29
next generation applications
Did you pair up the happy couples? Make sure you got all of these right,
and if not, take your time and gure out what you missed, and why.
var request = new XMLHttpRequest();
The Great Code-Comment Coupling Contest
request.open(“POST”, url, true);
var url = “/servlet/GetMileageServlet”;
request.open(“GET”, url, false);
/* Initialize an asynchronous connection using POST */
/* Initialize a synchronous connection using GET */
/* Create a new variable and assign it the URL to a Java servlet */
/* Create a new object to talk HTTP to a web server */
Meet the Happy Couples...
When this is false, the
request will be synchronous...
...and when it’s true, the
request is ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

What Employees Want Most in Uncertain Times

What Employees Want Most in Uncertain Times

Kristine W. Powers, Jessica B.B. Diaz
What Successful Project Managers Do

What Successful Project Managers Do

W. Scott Cameron, Jeffrey S. Russell, Edward J. Hoffman, Alexander Laufer
How to Become a Game-Changing Leader

How to Become a Game-Changing Leader

Douglas A. Ready, Alan Mulally

Publisher Resources

ISBN: 0596102259Errata PageSupplemental Content