vue function compost() { texteform = $("#texte").val(); pseudoform = $("#com_pseudo").val(); mailform = $("#com_mail").val(); $.post("commenter.php",{idsujet:714,texte:texteform,send:1,liveform:1,pseudo:pseudoform,mail:mailform}, function(data) { if(data.result == 1) { $("#comlivee").append(''); } else if(data.result == 2) { $("#comlivee").html(''); } else if(data.result == 3) { $("#comlivee").html(''); } else if(data.result == 4) { $("#notiftop").append('
Tu es déjà inscrit sur Kommunauty avec cette adresse. Connecte-toi pour commenter cet article !
'); scrollTo(0,0); afflog(); $("#comlivee").html(''); } else if(data.result == 5) { $("#comlivee").html(''); } else if(data.result == 6) { $("#comlivee").html(''); } else if(data.result == 7) { $("#comlivee").html(''); } else if(data.result == 'ok') { $("#formulaire").slideUp(); $("#ajoutecom").slideUp(); $("#comlivee").html('
Commentaire en attente

Tu dois valider ton premier commentaire. Nous t\'avons envoyé un e-mail contenant un lien : clique pour valider et ton commentaire sera validé instantanément.

'); } else { $("#texte").val(""); $("#comlivee").append(data.result); } },"json"); return false; }