[BACK]Return to form.min.js CVS log [TXT][DIR] Up to [local] / draft

Diff for /draft/form.min.js between version 1.31 and 1.65

version 1.31, 2024/03/28 19:50:37 version 1.65, 2024/03/30 16:16:46
Line 13  function validateMsg(msg) {
Line 13  function validateMsg(msg) {
         return (msg.length>5);          return (msg.length>5);
 }  }
   
 //async function postData() {  
 //  const formData = new FormData(form);  
 //  try {  
 //    const response = await fetch("/feedbk/", {  
 //      method: "POST",  
 //      body: formData,  
 //    });  
 //    console.log(await response.json());  
 //  } catch (e) {  
 //    console.error(e);  
 //  }  
 //}  
   
 async function sendData() {  async function sendData() {
         var er = 0;          var er = 0;
                 em = document.getElementById("cfem").value,                  em = document.getElementById("cfem").value,
Line 57  async function sendData() {
Line 44  async function sendData() {
                                 callback: function(token) {                                  callback: function(token) {
                                         ii.textContent="Sent";                                          ii.textContent="Sent";
                                         console.log(`Challenge Success ${token}`);                                          console.log(`Challenge Success ${token}`);
 //                                      postData();                                          const dataToSend = JSON.stringify({"add": em, "sub": su, "msg": ms, "tok": token});
 var data="",                                          console.log(`JSON: ${dataToSend}`);
         status="";  
 $.post("/feedbk/", token, function(data, status){  
     console.log("Data: " + data + "\nStatus: " + status);  
 });  fetch("/feedbk/", {
           credentials: "same-origin",
           mode: "same-origin",
           method: "post",
           headers: { "Content-Type": "application/json" },
           body: dataToSend
   })
         .then(response => response.json())
         .then(json => console.log(json))
   
   
   
   
   
   

Legend:
Removed from v.1.31  
changed lines
  Added in v.1.65

https://cvs.kroczynski.net