Created
March 11, 2016 22:09
-
-
Save yefim/7b7bc31984f3a287f3f0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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