Skip to content

Instantly share code, notes, and snippets.

@44uk
Created August 22, 2012 02:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 44uk/3421576 to your computer and use it in GitHub Desktop.
Save 44uk/3421576 to your computer and use it in GitHub Desktop.
$('body').on('click', 'a', function(e) {
e.preventDefault();
$.get($(this).attr('href')).success(function(html) {
$('body').html('');
$('body').append($(html).find('body'));
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment