JSFiddle - React, Tailwind, and code Playground

by igalst

HTML

<button id="btn">send</button>

JavaScript

$("#btn").click(function () {
    $.ajax({
        type: "POST",
        url: "https://docs.google.com/a/netcraft.co.il/forms/d/1xQLixM8LKgZGn5PZ1uyM6QCWV6M1vdMay4QLJY6-b90/formResponse",
        data: {
            "entry.1768024140": "foo",
            "entry.1403417345": "male",
            "entry.1403417345.other_option_response": "",
            "draftResponse": [null,null,"-2069239198730456093"],
            pageHistory:0,
            fromEmail:false,
            fbzx:-2069239198730456093,
            submit:"Submit"
        }
    })
        .done(function (msg) {
        alert("Data Saved: " + msg);
    });
});