Skip to content

Instantly share code, notes, and snippets.

@tanelsuurhans
Created November 23, 2011 10:44
Show Gist options
  • Save tanelsuurhans/1388410 to your computer and use it in GitHub Desktop.
Save tanelsuurhans/1388410 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
 $('.button').click(function(){
   $(this).addClass('down');
 });
 $('.button').mouseover(function(){
   $(this).addClass('over');
 });
 $('.button').mouseout(function(){
   $(this).removeClass('over');
 });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment