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
258
Chapter 4.5
The rst thing we need to do is gure out which <img> was clicked on, so you can
add the right CD cover to the “top5” <div>. JavaScript lets you know what part of
the DOM tree called your function through a special keyword named this.
Take a look and see how the this keyword works:
Pay attention to “this”
img
img
img
img
img
div
top5.js
addToTop5()
A user clicks on the
CD cover image,
represented by an <img>
element, in top5.html.
The <img> element runs
its onClick handler, the
addToTop5() function in
the top5.js JavaScript le.
2
The “this” keyword points
to the <img> element
that called addToTop5(),
and is available to any
code in addToTop5().
function addToTop5() {
var imgElement = this;
// More JavaScript code...
}
3
Once this code runs, the imgElement
variable points back to the <img> element
node that was clicked on by the user.
img
Mouse click
1
the “this” keyword
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