Skip to content

Instantly share code, notes, and snippets.

@ashaw
Created August 31, 2012 18:19
Show Gist options
  • Save ashaw/3556870 to your computer and use it in GitHub Desktop.
Save ashaw/3556870 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
#box {
width:200px;
height:200px;
background:black;
}
#box.red {
background:red;
}
</style>
<script src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
<script>
$(function(){
$("#box").addClass("red");
$("#box").click(function() {
$("#box").removeClass("red");
})
});
</script>
</head>
<body>
<div id="box"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment