I would like to get the answer from ajax, and load the div ...
If I load the div, passing the url works 100%
var detalhamentoDiv = $("#detalhamentoDiv");
detalhamentoDiv.load('/Exemplo/Controller/Teste');
$('#detalhamentoDiv').modal('show')
But the problem is that I want to load the div with the ajax response.
$.ajax({
url: "/Exemplo/Controller/ConfirmarDados",
type: "post",
data: postForm, //dados
success: function (response) {
var detalhamentoDiv = $("#detalhamentoDiv");
//como carregar a div com a response??
//detalhamentoDiv.??
},
error: function (jqXHR, textStatus, errorThrown) {
console.log(textStatus, errorThrown);
}
});
C # code
public ActionResult ConfirmarDados()
{
var model = ...;
return PartialView("_ModalDialog", model)
}
Thank you ..