I have the following code:
if(oper == 1) {
$("#op" + iddoc).html("<input type='button' onClick='AddExcDocCPS(\"" + idcontrato + "\", \"" + iddoc + "\", 0)' value='Excluir' class='BT_Vermelho'>");
//alert("Documento Incluído com Sucesso!");
$(".MsgRetorno").html("<P style='margin:0; color:green;'>Documento Incluído com Sucesso!</P>");
$(".MsgRetorno").fadeOut(1000);
}
else
{
$("#op" + iddoc).html("<input type='button' onClick='AddExcDocCPS(\"" + idcontrato + "\", \"" + iddoc + "\", 1)' value='Incluir' class='BT_Verde'>");
//alert("Documento Excluído com Sucesso!");
$(".MsgRetorno").html("<P style='margin:0; color:red;'>Documento Excluído com Sucesso!</P>");
$(".MsgRetorno").fadeOut(1000);
}
Is a list with delete button that includes include and vice versa. It turns out that it only appears once ... After fadeOut () it does not appear again when I click the buttons. I'm a beginner in JQuery.
Can anyone tell me why?