【HTML】
			<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
			<html>
			 <head>
			  <meta http-equiv="content-type" content="text/html;charset=utf-8">
			  <title>jQuery Sample</title>
			  <link rel="stylesheet" href="css/main.css" type="text/css" media="all">
			  <script type="text/javascript" src="js/jquery.js"></script>
			  <script type="text/javascript" src="js/main.js"></script>
			 </head>
			 <body>
			  <h1>jQueryサンプル</h1>
			  <p>イベントの処理</p>
			  <div>[1] ここをクリック</div>
			  <div>[2] ここをクリック</div>
			  <div>[3] ここをクリック</div>
			 </body>
			</html>
			【CSS】
			h1 {
			 font-size:14pt;
			 border-bottom:1px dotted gray;
			 width:320px;
			}
			【JavaScript】
			$(function(){
			 $("div").click(function(){
			  this.style.backgroundColor = "yellow";
			 });
			});
		
【HTML】
			<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
			<html>
			 <head>
			  <meta http-equiv="content-type" content="text/html;charset=utf-8">
			  <title>jQuery Sample</title>
			  <link rel="stylesheet" href="css/main.css" type="text/css" media="all">
			  <script type="text/javascript" src="js/jquery.js"></script>
			  <script type="text/javascript" src="js/main.js"></script>
			 </head>
			 <body>
			  <h1>jQueryサンプル</h1>
			  <p>イベントの処理</p>
			  <ul>
			   <li><a href="http://www.openspc2.org/">OpenSpace</a></li>
			   <li><a href="http://www.google.co.jp/">Google</a></li>
			   <li><a href="http://www.amazon.co.jp/">Amazon</a></li>
			  </ul>
			 </body>
			</html>
			【CSS】
			h1 {
			 font-size:14pt;
			 border-bottom:1px dotted gray;
			 width:320px;
			}
			【JavaScript】
			$(function(){
			 $("li a").click(function(){
			  return false;
			 });
			});