Skip to content

Instantly share code, notes, and snippets.

@clifton
Created March 15, 2012 04:42
Show Gist options
  • Save clifton/2041941 to your computer and use it in GitHub Desktop.
Save clifton/2041941 to your computer and use it in GitHub Desktop.
// evented programming with clicks
$("#link").on("click", function (event) {
alert("You clicked me!");
});
// evented programming with messages
connection.on("message", function (message) {
alert("I received this message: " + message);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment