Skip to content

Instantly share code, notes, and snippets.

@yefim
Created March 11, 2016 22:09
Show Gist options
  • Save yefim/7b7bc31984f3a287f3f0 to your computer and use it in GitHub Desktop.
Save yefim/7b7bc31984f3a287f3f0 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style>
div {
display: none;
}
.active {
display: block;
}
</style>
</head>
<body>
<a href="#uber">Uber</a>
<a href="#facebook">Facebook</a>
<div id="uber">
<h1>I built Uber</h1>
</div>
<div id="facebook">
<h1>I worked at Facebook</h1>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
var showPage = function(hash) {
$('div').removeClass('active');
$(hash).addClass('active');
};
window.onhashchange = function() {
showPage(window.location.hash);
}
if (window.location.hash) {
showPage(window.location.hash);
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment