CountOfMontecristo Posted August 8, 2011 Report Share Posted August 8, 2011 (edited) Olá a todos.Tenho um formulário ajax, onde após o submit, gostaria que fosse exibida uma mensagem de sucesso, sem ter que recarregar a página. Como se uma div aparecesse.Ainda não está aparecendo a mensagem de sucesso ou de erro. Eis o código:Alguém tém alguma idéia?function send(form) { var valid = jQuery(form).validationEngine('validate'); if(valid == true){ var options = { url: jQuery(form).attr('action'), type:'POST', success: function(){ alert('success'); }, error: function(){ alert('failure'); } resetForm:true }; jQuery(form).ajaxSubmit(options); document.getElementById("sendDataT").style.display="block"; } } jQuery(document).ready(function(){ jQuery(".afl-cf, #comment-form").validationEngine(); }); Edited August 8, 2011 by CountOfMontecristo Quote Link to comment Share on other sites More sharing options...
Question
CountOfMontecristo
Olá a todos.
Tenho um formulário ajax, onde após o submit, gostaria que fosse exibida uma mensagem de sucesso, sem ter que recarregar a página. Como se uma div aparecesse.
Ainda não está aparecendo a mensagem de sucesso ou de erro. Eis o código:
Alguém tém alguma idéia?
Edited by CountOfMontecristoLink to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.