Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created December 30, 2015 12:18
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 bjoerntx/a4b76dcfc721e33044e0 to your computer and use it in GitHub Desktop.
Save bjoerntx/a4b76dcfc721e33044e0 to your computer and use it in GitHub Desktop.
function switchBackstageView(view) {
$('#menu li a').each(function () {
$(this).removeClass("active");
});
// add the title
$("#title").html("<h1>" + view + "</h1>");
$("#" + view).addClass("active");
// load the partial view dynamically
$("#stage").load("/home/getview", { viewName: view });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment