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
next generation applications
Any time Katie clicks the “Show Me the Money” button, the getBoardsSold()
function should run. You can use a JavaScript event handler to take care
of this. An event handler connects a piece of JavaScript code—like the
getBoardsSold() function—to a certain event, like when someone clicks a
button on a web page.
In the Boards app, let’s use an event handler to connect the “Show Me the Money”
button to the getBoardsSold() function. Since you want to attach the event to
a button click, use the onClick handler, like this:
Adding an event handler
updatePage()createRequest() getBoardsSold()
<form method=”GET” action=”getUpdatedBoardSales.php”>
<input value=”Show Me the Money” type=”button”
onClick=”getBoardsSold();” />
</form>
Since this form should never get
submitted in the Ajax version of
the report, you can remove the
“action” attribute if you want.
“onClick” means that anytime
Katie clicks this button...
...this function will get run.
Your requests and responses are handled by the web
browser, not directly by your JavaScript code.
Once the web browser gets a response to your
asynchronous request, it will run a callback function.
Reviewing the highlight reel
Remember our highlight reel? Have you been keeping up with what
we’ve covered, and what you’ve still got to look forward to? Let’s take a
quick look at what you’ve learned in this chapter so far:
We used
cr ...
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