Skip to content

Instantly share code, notes, and snippets.

@Serubin
Created January 11, 2012 18:37
Show Gist options
  • Save Serubin/1596085 to your computer and use it in GitHub Desktop.
Save Serubin/1596085 to your computer and use it in GitHub Desktop.
JavaScript check hash
$(document).ready(function(){
var hash = location.hash;
$('#title').slideDown('slow');
if(hash == 'rules'){
$('#rules').fadeIn('slow');
$('#content').hide();
}
else{
$('#content').fadeIn('slow');
$('#rules').hide();
document.write(hash)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment