Skip to content

Instantly share code, notes, and snippets.

@philk
Created August 31, 2010 22:48
Show Gist options
  • Select an option

  • Save philk/559914 to your computer and use it in GitHub Desktop.

Select an option

Save philk/559914 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
p {
margin: 8px;
font-size:16px;
}
p:hover { background: yellow; }
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("a").click(function(event){
$(this).hide("slow");
return false;
});
});
</script>
</head>
<body>
<a href="http://jquery.com/">jQuery</a>
<p>Hello</p>
<p>and</p>
<p>Goodbye</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment