I'm trying to post XML data and then do a redirect to the current page, but I can't seem to get it to work.
When I do this:
<form action="http://onehouse.freshdesk.com/helpdesk/tickets.xml" method="post">
it works and posts the data to the website that I want it to.
However, it leads the user to an XML page so I want to post it and then have it redirect to my current contact form page and have a success message of some kind.
I've tried using:
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("POST","http://onehouse.freshdesk.com/helpdesk/tickets.xml",true);
xmlhttp.send();
}
I don't get any errors in my console, but it does not post to the the freshdesk website like I want it to. Does anyone know what I'm doing wrong?