How would you rewrite this statement using Jquery + Ajax only? This code displays a link. When I click on it a view is returned into the StuffPanel id.
@{ AjaxOptions options = new AjaxOptions
{
InsertionMode = InsertionMode.Replace,
UpdateTargetId = "StuffPanel",
OnBegin = "OnBeginWork",
OnComplete = "OnCompleteWork",
};}
<p>@Ajax.ActionLink("show stuff", "Index", "Stuff", options)</p>