In jquery I'm trying to post the form values into Google Spreadsheet, my values are posting fine to the google doc, but I'm having an issue in displaying the success message or redirect to a page, the error says "Failed to load No ''Access-Control-Allow-Origin" header is present on the requested resource"
Debugging results:
Tried to change the dataType to JSONP or plain/html no luck or is there anything that we need to do it on the server.
$.ajax({ cache: false, crossDomain: true, url: "https://docs.google.com/forms/d/e/1FAIpQLSeqmqeUyQKPR4gncxSiM4rqnQq34h87c9J-XpHK1DF6n9f9_w/formResponse", data: {"entry.92445343": firstname, "entry.360980429": lastname, "entry.1982457434": receiptnumber, "entry.776257995": storelocator, "entry.1724875707": email, "entry.295248778": phone, "entry.2080536869": terms, "entry.764222432": age, "entry.495317103": signup }, async:false, type: "POST", dataType: "xml", success: function (response) { if (response.d == true) { alert("You will now be redirected."); window.location = "//www.aspsnippets.com/"; } }, failure: function (response) { alert(response.d); }})