Skip to content

Instantly share code, notes, and snippets.

@fwielstra
Created June 13, 2011 10:21
Show Gist options
  • Save fwielstra/1022568 to your computer and use it in GitHub Desktop.
Save fwielstra/1022568 to your computer and use it in GitHub Desktop.
Sammy.js - Basic application
(function($) {
var app = $.sammy('#main', function() {
this.get('#/', function(context) {
alert('index!');
});
});
$(function() {
app.run('#/');
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment