Skip to content

Instantly share code, notes, and snippets.

@A-J-C
Created May 30, 2013 18:16
Show Gist options
  • Save A-J-C/5679905 to your computer and use it in GitHub Desktop.
Save A-J-C/5679905 to your computer and use it in GitHub Desktop.
A CodePen by Alex C.
<!DOCTYPE html>
<html>
<head>
<title>Check 'this' Out!</title>
<link rel='stylesheet' type='text/css' href='stylesheet.css'/>
<script type='text/javascript' src='script.js'></script>
</head>
<body>
<div></div>
<div></div>
<div></div>
<div></div>
</body>
</html>
$(document).ready(function() {
$('div').click(function() {
$(this).fadeOut('slow');
});
});
div {
height: 100px;
width: 100px;
background-color: #4ECDC4;
border-radius: 5px;
display: inline-block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment