Skip to content

Instantly share code, notes, and snippets.

View GeneralUSA's full-sized avatar

GeneralUSA

  • USA
View GitHub Profile
@anandnalya
anandnalya / app_1.js
Created March 19, 2012 07:32
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.