Skip to content

Instantly share code, notes, and snippets.

@ryanneufeld
Created October 15, 2011 21:34
Show Gist options
  • Save ryanneufeld/1290177 to your computer and use it in GitHub Desktop.
Save ryanneufeld/1290177 to your computer and use it in GitHub Desktop.
function loadPage(href) {
$('#main').load(href);
}
$('#main').delegate('a','click', function(){
loadPage(this.href);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment