<!DOCTYPE html PUBLIC "- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>My First jQuery Plugin</title>
<script
type="text/javascript"
src="jquery-latest.pack.js">
</script>
<script
type="text/javascript"
src="jquery.scared.js">
</script>
<script type="text/javascript">
$(
function(){
$( "input[@type='button']" ).scared();
}
);
</script>
</head>
<body>
<h1>
My First jQuery Plugin
</h1>
<p>
Hey, try to click on the following buttons (you know you want to):
</p>
<p>
<input type="button" value="Click Me!" />
<input type="button" value="Touch Me!" />
<input type="button" value="Grope Me!" />
<input type="button" value="Fondle Me!" />
<input type="button" value="Caress Me!" />
</p>
</body>
</html>