Submit a form without page refresh PHP & jQuery
In this tutorial we have a simple form with name, email & phone number. The form submit all fields to a PHP script without page refresh, using native jQuery method (native meaning, you don’t need to download any extra plugins to make it work.
[wpdm_file id=4]
First of all you need to make a HTML form.
HTML Code
Simple HTML Code
<form action="submit.php" method="post"> Name: <input name="name" id="name" type="text" /><br /> Email: <input name="email" id="email" type="text" /><br /> Phone Number: <input name="phone" id="phone" type="text" /><br /> <input type="button" id="searchForm" onclick="SubmitForm();" value="Send" /> </form>
JavaScript Code
Simple JavaScript Code
<script src="http://code.jquery.com/jquery-latest.js"></script> <script> function SubmitForm() { var name = $("#name").val(); var email = $("#email").val(); var phone = $("#phone").val(); $.post("submit.php", { name: name, email: email, phone: phone }, function(data) { alert("Data Loaded: " + data); }); } </script>
JavaScript Library Include
<script src="http://code.jquery.com/jquery-latest.js"></script>
PHP Code
Simple PHP Action File
<?php echo $_POST['name']."<br />"; echo $_POST['email']."<br />"; echo $_POST['phone']."<br />"; echo "All Data Submitted Sucessfully!" ?>
Tutorial Categories:
HI, i got help from the above mentioned code,its really v nice. thanks…. 🙂
Somehow feels great, But you could have made this code more clean and more clear.
It’s great in this case as well.
I want you to prevent click so that page may avoid refreshing.
user following section to prevent refreshing your page.
return false;
at the end of your function before “}”,
Or you may use e.preventDefault();
Hope you will change your code to this.
nice example.., thanks
thanks
Good Example
Hello Guys,
This is look great, but I can’t download the download file. Anyone can send me the zip file? I register to your feedburner but looks that area have error..
Thank you
Thanks Dear… it was very much helpfull
paki oye
esto no funsiona me parese a mi ke esto es vasura porke pornes esta bazofia pequenyo trozo de mierda al sol
code for writing comments and updating on the page immediately
hgd
thanks buddy
worst code ever making fool don,t downloas
Thanks. It looks pretty simple.