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
116
Chapter 2
Most Ajax apps start by running a JavaScript function based on
an event (like a phone number being entered in). The JavaScript
builds a request URL, and sends a request to that URL.
1
Your code makes a request to a web server
Web Browser
Internet Explorer
Firefox
Opera
Safari
Mozilla
PHP script
Here’s a look at
what happens
with the Boards
app, from
Chapter 1.
This request comes from the
browser, and not directly from
your JavaScript code.
Request Total
Boards Sold
Your code asks
that a request
be sent.
<script>
var request...
function foo()
{
...
}
</script>
getBoardsSold()
<?php
require(‘lib.php’);
function go() {
$myVar = ...
return ...
}
?>
Let’s take a closer look at exactly what browsers like Internet Explorer and Opera are
doing, and gure out why that creates trouble for our asynchronous apps.
When browsers cache request URLs...
When a response is sent back to the browser, the callback
function you specied is run. But, if the browser is caching
request URLs, it takes a note of the URL, and the answer from
the server, and saves those two values for later.
2
The server sends back a response
Web Browser
Internet Explorer
Firefox
Opera
Safari
Mozilla
PHP script
The browser also
stores the URL and
response so it can
use them later.
The server sends back an
answer to the request.
1643
<script>
var request...
function foo()
{
...
}
</script>
updatePage()
<?php
require(‘lib.php’);
function go() {
$myVar = ...
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