Created
April 11, 2012 13:33
-
-
Save nickboyce/2359314 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
$("a").each(function(k,v) { | |
$(v).click(function() { | |
// do something here to load the content in dynamically | |
history.pushState(null, null, $(this).prop("href")); | |
return false; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment