Skip to content

Instantly share code, notes, and snippets.

View Hemalatah's full-sized avatar

Hema Kottaisamy Hemalatah

  • Pinterest
  • San Francisco, California
View GitHub Profile
@Hemalatah
Hemalatah / app_1.js
Created August 8, 2016 21:01 — 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.