29 lines
		
	
	
		
			717 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			717 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
 | 
						|
<html>
 | 
						|
<head>
 | 
						|
  <title>Example 4.15</title>
 | 
						|
<script>
 | 
						|
function countBeans()
 | 
						|
{
 | 
						|
 	var beans = 4;
 | 
						|
	beanImage = ("<img src = 'blue_bean.jpg' >");
 | 
						|
	document.write("<table align = 'center'><tr><td>");
 | 
						|
	document.write("<h1> <br /> Here are your beans:</h1>");
 | 
						|
	for (var i = beans; i >= 0; i--)
 | 
						|
		document.write(beanImage + "   ");
 | 
						|
	document.write("</td></tr></table>");
 | 
						|
}
 | 
						|
</script>
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<table align ="center" width ="70%"><tr><td colspan ="2">
 | 
						|
<h1> </h2>
 | 
						|
<h1>Count Beans!</h1>
 | 
						|
<tr><td><p> </p>
 | 
						|
<p><input type="button" id="beans" value="Click to count beans" onclick="countBeans();" /></p>
 | 
						|
</td></tr>
 | 
						|
</table>
 | 
						|
</body>
 | 
						|
</html>
 | 
						|
 |