Skip to content

Instantly share code, notes, and snippets.

@Hollyw00d
Created December 6, 2014 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hollyw00d/138268be865c0a7cbaf9 to your computer and use it in GitHub Desktop.
Save Hollyw00d/138268be865c0a7cbaf9 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" scr="script.js"></script>
</head>
<body>
<p>Click to hide.</p>
</body>
</html>
$(document).ready(function(){
$("p").on("click", function(){
$(this).hide();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment