Skip to content

Instantly share code, notes, and snippets.

@0xRoch
Created May 26, 2011 12:07
Show Gist options
  • Save 0xRoch/993004 to your computer and use it in GitHub Desktop.
Save 0xRoch/993004 to your computer and use it in GitHub Desktop.
$(document).ready(function() {
$('.insite').live("click", function(ev) {
var href = $(this).attr('href');
if ( history.pushState ) history.pushState( {}, document.title, href);
ev.preventDefault();
$('#content').fadeOut().load(href+' #content', function() {
$(this).fadeIn();
_gaq.push(['_trackPageview', href ]);
//window.disqus_no_style = true;
//$.getScript("http://disqus.com/forums/mnml/embed.js")
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment