-1
My blocking Antivirus when opening modal, the modal is not even displayed right.
Follows code:
Click event:
$("#cartoes_click").click(function () {
$('.ModalContent_Cartoes').load("/Payment/_Cartoes_Fisica", function () {
$('#myModal_Cartoes').modal('show');
});
});
Controller:
[HttpGet]
public PartialViewResult _Cartoes_Fisica()
{
return PartialView();
}
Partialview:
Here I have a piece of javascript code, which antivirus blocks:
var teste1 = "Número do cartão inválido";
Or
vat teste2 = "Invalid card number";
With these codes above, Kaspersky blocks modal bootstrap, if I do put string like this: var teste1 = qualquer coisa aqui
, antivirus does not block.
When I click on the button to open modal, give these messages below:
That means an antivirus has a reserved word ?
I mean if I activate ssl, the antivirus no longer has the ability to block ?
– Matheus Miranda
The guy is absolutely right, I activated the SSL here, and it worked.
– Matheus Miranda
thanks to those who clicked on the bottom arrow and denied me
– Marlon Lima