Submit form using JS and AJAX

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP



Submit form using JS and AJAX



I have little problem with JS and AJAX, i dont know this languages. I know php and i have applied for position php developer, now i have some tasks to do and i stucked at one. It is simple task, form, submit, process information, store in DB, and send. Only problem is i have to use AJAX to submit form, i done little research and somehow i made wrote this code but it doesnt work.


<div>
<form method="POST" action="add.php" id="form">
<input type="email" name="email" id="email" value="Email">
<textarea name="content" id ="content">Message</textarea>
<input type="submit" value="Submit" id="submit">
</form>
<a href="send.php">Send messages from database</a>
</div>
<script>
$(document).ready(function()
// When click on button store values from form fields into variables
$("form").submit(function(event) );
);
</script>
</body>



IN form can i use input type button instead of submit (so no need for preventDefault in JS) and in JS i do it
$("#submit").click(function.....



I think i have tried all combinations and when form is submited it goes with default, no JS activated...



SOLVED: problem was in IF statment, content="" instead of content=="", OMG how i overlooked that...





url: ("#form").attr('action'); What is the name of this file? url (default: The current page), Type: String, A string containing the URL to which the request is sent.
– zipzit
Oct 31 '15 at 19:31



url: ("#form").attr('action');





Look at your javascript console you should see that you have a syntax error, url: ("#form").attr('action'); its supposed to be a , at the end
– Patrick Evans
Oct 31 '15 at 19:33


url: ("#form").attr('action');


,





Beyond the comma issue.. where do you want the data sent? Hint: I'm thinking add.php is a pretty good place...
– zipzit
Oct 31 '15 at 19:35





Yes add.php is place, but i didnt wanted it to be hardcoded so i used ("#form").attr('action') to pull URL from form, if you understand me..
– Constantine1001
Oct 31 '15 at 19:42





$("#form").submit(... ? Also is jQuery loading correctly?
– zipzit
Oct 31 '15 at 19:42



$("#form").submit(...




3 Answers
3



Use the serialize() method (described bellow) instead of manually getting the value of each field of your form in order to build the JSON object.


serialize()


$('#form').submit(function()
$.ajax(
data: $(this).serialize(),
type: $(this).attr('method'),
url: $(this).attr('action'),
success: function()
alert("Data successfully forwarded to add.php");

);
return false;
);



You have a syntax error in your ajax call.


ajax


$.ajax (
type: "POST",
url: ("#form").attr('action'); // This is bad JSON
data: "email": email, "content": content,
cache: false,
success: function()
alert("Data successfully forwarded to add.php");

);



Replace that line with:


url: $("#form").attr('action'),





well i fixed all error but main problem remains, cant trigger JS on form submit, it goes default... $(document).ready(function() { $("#form").submit(function(event) { event.preventDefault();
– Constantine1001
Oct 31 '15 at 21:20






@Constantine1001 any javascript errors in the console?
– Vince
Nov 1 '15 at 3:19



To answer your questions, yes you are right, you can use an input of type button and you don't necessary need to depend on submitting the form. Here is how you'd write it without form submission:


input


button


<div>
<form method="POST" action="add.php" id="form">
<input type="email" name="email" id="email" value="Email">
<textarea name="content" id ="content">Message</textarea>
<input type="button" value="Submit" id="submit" onclick="SendAjax();">
</form>
<a href="send.php">Send messages from database</a>
</div>
<script>
// When click on button store values from form fields into variables
function SendAjax()
var email = $("#email").val();
var content = $("#content").val();
// Check if fields are empty
if (email==""
</script>



As you can see, I prefer to specify the URL in AJAX instead of taking it from the form's action which I sometimes have it set to a different URL from the AJAX. However, if you want to take the URL from the form's action, then fix that line in your code to be:


url: $("#form").attr('action'),





nice explanation! In the ajax submit code, there should be a comma after the "type your URL here" instead of a semi-colon
– Zedkay22
Jul 15 at 18:27






By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

Firebase Auth - with Email and Password - Check user already registered

Dynamically update html content plain JS

How to determine optimal route across keyboard