<!DOCTYPE html PUBLIC "- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>jQuery Plugin For Code Short Cuts</title>
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<script type="text/javascript">
jQuery.fn.voidClick = function( method ){
this.click(
function(){
method.apply( this, arguments );
return( false );
}
);
return( this );
}
$(function(){
$( "a" ).voidClick(
function(){
alert( $( this ).attr( "href" ) );
}
);
});
</script>
</head>
<body>
<h1>
jQuery Plugin For Code Short Cuts
</h1>
<p>
<a href="http://www.google.com">Navigate Away</a>!
</p>
</body>
</html>