Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
What do you mean, preserve its state? You're only touching partial2Div, so why would the rest of the page change? – dbaseman Apr 23 '12 at 1:48
Is #partialDiv2 being 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
Sry... I'm pretty new to JQuery... I was thinking I'd have to call a controller method or something. Thanks tho, got it figured out. – barronick Apr 23 '12 at 2:45

4 Answers

up vote 1 down vote accepted

if you have updated the partial2Div then well change your logic to not do so instead have another div where your partial will be inserted, if thats not the case and partial2Div is just meant for that partial all you got to do is hide that div as follows:

$("cancel").click(function(){
   $("partial2Div").hide();
});
share|improve this answer

According to the jQuery API, there is a callback for when the contents have been loaded. You should be able to try something like this:

$('#myLink').click(function () {
     $('#partial2Div').load(this.href, function(){
         $("#id-of-cancel-button").click(function(){
             $("#partial2Div").hide();
         });
     });
     return false;
});

Just make sure you reference the id of the cancel button when you bind it!

share|improve this answer
1  
Thank you, that works... I just figured it out a minute ago (by using this in the partial view: $("#pViewCancel").click(function () { $(this).closest("#partial2Div").hide(); }); But I like your way better, thanks! – barronick Apr 23 '12 at 2:30

You can't unload a partial view without loading the full page.

But you can show/hide it, simply put the partial view in a div and hide the div on button click. Or remove the element completely from the DOM.

share|improve this answer
$("cancel").click(
  function()
  {    
    $("partial2Div").html(''); 
  }
); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.