Skip to content

Instantly share code, notes, and snippets.

@rodrigo-x
Created October 15, 2012 00:25
Show Gist options
  • Save rodrigo-x/3890270 to your computer and use it in GitHub Desktop.
Save rodrigo-x/3890270 to your computer and use it in GitHub Desktop.
snippet - hash na url...
(function (win) {
win.hashchange(function () {
var page = location.hash + '_c';
var $self = $(page);
if (page == '_c') {
page = '#home_c';
}
$self.show();
$self.hide();
});
win.hashchange();
}(window));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment