Skip to content

Instantly share code, notes, and snippets.

@outoftime
Created April 20, 2017 01:11
Show Gist options
  • Select an option

  • Save outoftime/5547b31ab62df121fc73164fb73f4404 to your computer and use it in GitHub Desktop.

Select an option

Save outoftime/5547b31ab62df121fc73164fb73f4404 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=5547b31ab62df121fc73164fb73f4404
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Hide the giraffe</h1>
<img src="https://dl.dropboxusercontent.com/u/364501990/animals_hero_giraffe_1_0.jpg">
</body>
</html>
{"enabledLibraries":["jquery"]}
$("h1").click(function() {
$("img").hide();
});
h1 {
cursor: pointer;
}
img {
max-width: 90vw;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment