Created
July 26, 2014 04:28
-
-
Save deenath/eeb425d3c704ea675134 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<div id="main"> | |
<h1>About Us</h1> | |
</div> |
This file contains hidden or 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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<script src="js/jquery-1.11.1.min.js"></script> | |
<script src="js/jquery.smoothState.js"></script> | |
</head> | |
<body> | |
<div class="navigation"> | |
<a href="index.html"> | |
Home | |
</a> | |
<a href="about.html"> | |
About | |
</a> | |
</div> | |
<div id="main"> | |
<h1>Home Page</h1> | |
</div> | |
</body> | |
</html> |
This file contains hidden or 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
$(function() { | |
$('#main').smoothState({ | |
developer: true | |
}); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment