1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>

<html>
	<head>
		<meta content="text/html; charset=ISO-8859-1" http-equiv = "content-type">
		
		<title>lab14</title>
		
		<script>
		
			function build(){
				myImg = document.createElement("IMG");
				myImg.setAttribute("id","imageOne");
				myImg.setAttribute("src","http://i.imgur.com/kP9t1au.jpg");
				docBody = document.getElementsByTagName("body").item(0);
				docBody.appendChild(myImg);
				}
		</script>
	</head>
	
	<body>
		<button onclick="build()">click</button>
	</body>
</html>