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
131
duplication prohibited
Even though you probably didn’t realize it, the browser did try to tell you
something went wrong. The browser uses a property of your request object,
called status, that you can use to determine whether something went wrong.
Here’s how you can check the status of a request:
Checking the request’s status
function updatePage() {
if (request.readyState == 4) {
if (request.status == 200) {
var customerAddress = request.responseText;
document.getElementById(“address”).value = customerAddress;
} else
alert(“Error! Request status is “ + request.status);
}
}
You’ve seen most of this code
in Chapter 2... this is the
updatePage() callback function.
Here’s a new
property of the
request object.
It reports the
status code
from the server.
The server sends a
status of “200” when
everything is OK.
In case the status isn’t OK, let’s
output an error message to the
screen with the request’s status.
Add the code shown above to your updatePage() function in pizza.html. Now reload your
page in a web browser, and enter a phone number. When you change the phone number eld, and
then move to another eld, what happens? Write down the server’s status code in the blank:
Now x the request URL in getCustomerInfo() so that it points to the correct script on
the Break Neck server. Reload your page, and see what happens. Did you get another status
code? Write down what happened when y
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