Skip to content

Instantly share code, notes, and snippets.

@IliaIdakiev
Created July 23, 2013 12:51
Show Gist options
  • Save IliaIdakiev/6062116 to your computer and use it in GitHub Desktop.
Save IliaIdakiev/6062116 to your computer and use it in GitHub Desktop.
Javascript Redirect to current page another controller
function impersonate(id) {
if (confirm('Are you sure?')) {
var url = 'Account/PresentationImpersonateTo/' + id;
window.location.href = url;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment