Skip to content

Instantly share code, notes, and snippets.

@brettbuddin
Created December 21, 2011 04:15
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 brettbuddin/1504547 to your computer and use it in GitHub Desktop.
Save brettbuddin/1504547 to your computer and use it in GitHub Desktop.
$('', {
id: 'refresh-button',
href: 'http://google.com',
click: function(e) {
e.preventDefault(); alert('Sup?');
},
mouseover: function() {
$(this).addClass('active');
},
mouseout: function() {
$(this).removeClass('active');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment