Greetings everyone!
I need help with this code. For example, I have two websites: firstwebsite.com and secondwebsite.com
My form is on firstwebsite.com and the data are processed on the process.php of secondwebsite.com
What is happening is when someone submits the form in firstwebsite.com , the web page is redirected to a webpage in secondwebsite.com
What I want to happen is
to stop the form submission from redirecting to the web page of secondwebsite.com
instead of redirecting, a dialog box should appear telling the user that form have been submitted, thus the current form still remains on the page of firstwebsite.com
I've been looking for answers and I've tried several codes but none work.
Please paste the entire code or script or ajax that I should use.
<html>
<head>
<title>document</title>
<body>
<div id="mydiv">
<form name="sampleform" action="secondwebsite.com/process.php" method="POST">
<p><input type="text" name="phone"/></p>
<div id="phone-status"></div>
<p><input type="text" name="fname"></p>
<textarea name="text" id="text"></textarea>
<p><input type="submit" name="SubmitForm" value="SEND"></p>
</div>
</body>
</head>
</html>