Skip to content

Instantly share code, notes, and snippets.

@hini-manan
Created January 11, 2017 19:53
Show Gist options
  • Save hini-manan/c41e448954ed3c477e4f0432682d9e51 to your computer and use it in GitHub Desktop.
Save hini-manan/c41e448954ed3c477e4f0432682d9e51 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=c41e448954ed3c477e4f0432682d9e51
<!DOCTYPE html>
<html>
<head>
<title>Do Now 5.1.0</title>
</head>
<body>
<button id = "magic">Click Here</button>
<button id = "appear">Click Here to make words appear</button>
<h1>I am always awesome!</h1>
</body>
</html>
{"enabledLibraries":["jquery"]}
$("#magic").click(function(){
$("h1").hide();});
$("#appear").click(function(){
$("h1").show();});
#magic{
margin: 20px;
background-color: teal;
}
#appear{
margin: 20px;
background-color: teal;
}
h1{
margin:0px;
font-size: 50px;
color: purple;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment