Skip to content

Instantly share code, notes, and snippets.

@flaviocdc
Created March 15, 2013 17:19
Show Gist options
  • Select an option

  • Save flaviocdc/5171514 to your computer and use it in GitHub Desktop.

Select an option

Save flaviocdc/5171514 to your computer and use it in GitHub Desktop.
$.post("url-de-quem-trata-post-do-modal.php", $("#id-do-form-do-modal").serialize(),
function(data) {
if (data == "ERRO") { $("#id-do-form-do-modal p#mensagem-erro").val("Ocorreu um erro de validacao"); }
else {
// deu tudo certo, fecho o modal
$("#id-da-div-do-modal").hide();
$("#id-da-tabela").append("<tr><td>bla</td>");
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment