Skip to content

Instantly share code, notes, and snippets.

View SheldonPatnett's full-sized avatar

Sheldon Patnett SheldonPatnett

  • Sheldon Patnett
  • Hong Kong
View GitHub Profile
@SheldonPatnett
SheldonPatnett / gist:8518556
Created January 20, 2014 11:28
JQuery: Selector, Event, Function
//Basic Selectors: .class #id :type
//Basic Events: .click() .hover()
$("#id").click(function() {
//stuff
});