topical media & game development
mashup-delicious-06-example6-1.htm / htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>JavaScript and DOM Testing</title>
<script language="javascript" type="text/javascript">
var num_presses = 0;
function press_me()
{
num_presses++;
var num_presses_span = document.getElementById('num_presses_span');
num_presses_span.innerHTML = num_presses;
}
</script>
</head>
<body>
Number of presses: <span id="num_presses_span">0</span>
<input type="button" value="Press Me" onClick="javascript:press_me()" />
</body>
</html>
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.