I am loading partial view through ajax call html(). I can see response
has <form>
tag in chrome javascript debug. But when it loads to source it is disappearing. I can rest of the html except tag.
I am loading under another tag. I don't know what is the issue here?
var HandleGetEditPhone = function (response) {
if (response !== "") {
$('#DivPhoneContainer').html(response);
}
}