Skip to content

Instantly share code, notes, and snippets.

@dg1234uk
Created July 27, 2014 20:14
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 dg1234uk/93ac8307c294ace0c1c6 to your computer and use it in GitHub Desktop.
Save dg1234uk/93ac8307c294ace0c1c6 to your computer and use it in GitHub Desktop.
A Pen by Daniel Granger.
<button class="go">Go!</button>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
$('.go').click(function(){
$('.go').css('background-color', 'red');
});
.go {
background-color: #26A65B;
color: #fff;
font-weight: bold;
font-family: arial;
font-size: 16px;
border: none;
width: 100px;
padding: 10px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment