Skip to content

Instantly share code, notes, and snippets.

View GeneralUSA's full-sized avatar

GeneralUSA

  • USA
View GitHub Profile
@GeneralUSA
GeneralUSA / app_1.js
Created January 4, 2018 12:46 — forked from anandnalya/app_1.js
Building a Single Page Webapp with jQuery
$(document).ready(function() {
// convert all a/href to a#href
$("body").delegate("a", "click", function(){
var href = $(this).attr("href"); // modify the selector here to change the scope of intercpetion
// Push this URL "state" onto the history hash.
$.bbq.pushState(href,2);
// Prevent the default click behavior.