Skip to content

Instantly share code, notes, and snippets.

@Bijesse
Created December 5, 2016 17:12
Show Gist options
  • Save Bijesse/8c6595e048833909a24fd7212444fda8 to your computer and use it in GitHub Desktop.
Save Bijesse/8c6595e048833909a24fd7212444fda8 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=8c6595e048833909a24fd7212444fda8
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1> The color changing button</h1>
<button>colors!</button>
</body>
</html>
{"enabledLibraries":["jquery"]}
$("button").click(function(){
// On line 3 write code that will make the button turn green when it is clicked
});
button{
background: pink;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment