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
182
Chapter 3
Finishing up serveDrink()
Let’s spend a little time practicing with the JavaScript substring() method,
using the string you saw on the last two pages.
JavaScript
PHP script
HTML form
completing the callback function
function serveDrink() {
if (request.readyState == 4) {
if (request.status == 200) {
var response = request.responseText;
var whichCoffeemaker = response.substring(0, 1);
var name = response.substring(1, response.length);
if (whichCoffeemaker == “1”) {
var coffeemakerStatusDiv1 =
document.getElementById(“coffeemaker1-status”);
replaceText(coffeemakerStatusDiv1, “Idle”);
} else {
var coffeemakerStatusDiv2 =
document.getElementById(“coffeemaker2-status”);
replaceText(coffeemakerStatusDiv2, “Idle”);
}
alert(name + “, your coffee is ready!”);
} else
alert(“Error! Request status is “ + request.status);
}
}
These two lines
should be pretty
routine by now.
We want just the very rst position
in order to get the number of the
coffee maker that nished up.
The name
returned by the
server starts
in the second
position (“1”), and
goes to the end
of the string.
This code updates the status of
whichever coffee maker nished brewing.
This last bit just lets
the person who placed
an order know that his
coffee is now ready.
you’re on your way 4
183 ...
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