I'm using .NET MVC3.... and I have a partial view that renders into a page when a button is clicked using ajax...
$('#myLink').click(function () {
$('#partial2Div').load(this.href);
return false;
});
But... I have a cancel button INSIDE this partial view when it loads and I'm trying to figure out how to have the 'original' page preserve its state (it has edit fields on it) when this cancel button is pressed... and just have the partial view disappear.
Any help would be greatly appreciated.
Thanks!
#partialDiv2being replaced with new content in your example? (I.e. you want the content previous to the.load()call to come back?) – Brad Christie Apr 23 '12 at 1:48