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
you’re on your way 4
19
next generation applications
If you did the exercise on the previous page, you should have some
code in your boards.html page that looks something like this:
Adding the getBoardsSold() function
<script language=”javascript” type=”text/javascript”>
var request = null;
function createRequest() {
// pre-assembled JavaScript
}
function getBoardsSold() {
createRequest();
}
</script>
Remember, all of the
JavaScript code is
between the <script>
and </script> tags.
Here’s createRequest(), which you
should have added a few pages back.
This is the new
JavaScript function...
...and here’s where the request
object is created, using the
pre-assembled JavaScript.
This is your
request
variable; once
your code calls
createRequest(),
this variable will
point to a new
request object.
So what’s next? You’ve got an object that you can use to request the
board sales from the server, but how do you make that request? First,
you need to tell the object where to send the request—in other words, it
needs to know what program on Katie’s server to send the request to. So
you need to tell it the URL of the script running on the web server.
And where do we get that URL? You can nd it in Katie’s web form:
<form method=”GET” action=”getUpdatedBoardSales.php”>
<input value=”Show Me the Money” type=”submit” />
</form>
But doesn’t the PHP script return a
bunch of HTML right now? I thought
we only ...
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