Skip to content

Instantly share code, notes, and snippets.

@samuelcar
Created January 26, 2015 10:41
Show Gist options
  • Select an option

  • Save samuelcar/3dbc07a8100809a3c1f1 to your computer and use it in GitHub Desktop.

Select an option

Save samuelcar/3dbc07a8100809a3c1f1 to your computer and use it in GitHub Desktop.
Reload the page using AJAX via JS
function reload_page(){
$.ajax(
{
url:"",
context:document.body,
success: function(s,x){
$(this).html(s);
}
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment