Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a form with name orderproductForm and an undefined number of inputs.

I want to do some kind of jQuery.get or ajax or anything like that that would call a page through Ajax, and send along all the inputs of the form orderproductForm.

I suppose one way would be to do something like

jQuery.get("myurl",
          {action : document.orderproductForm.action.value,
           cartproductid : document.orderproductForm.cartproductid.value,
           productid : document.orderproductForm.productid.value,
           ...

However I do not know exactly all the form inputs. Is there a feature, function or something that would just send ALL the form inputs?

Thanks

share|improve this question

6 Answers

up vote 130 down vote accepted

You can use the ajaxForm/ajaxSubmit functions from Ajax Form Plugin or the jQuery serialize function.

AjaxForm:

$("#theForm").ajaxForm({url: 'server.php', type: 'post'})

or

$("#theForm").ajaxSubmit({url: 'server.php', type: 'post'})

ajaxForm will send when the submit button is pressed. ajaxSubmit sends immediately.

Serialize:

$.get('server.php?' + $('#theForm').serialize())

$.post('server.php', $('#theform').serialize())

AJAX serialization documentation is here.

share|improve this answer
interesting idea, however, i do not control the server side I am calling, therefore I cannot send it serialized data – nute Dec 25 '09 at 1:45
4  
Yes you can, the name isn't important what it will do is send pairs of every form-key and every form-variable. – Steve Kemp Dec 25 '09 at 1:50
3  
It's serialized into a query string, just like the data you are putting into the array manually in the GET call there would be. This is what you want, I'm pretty sure. – JAL Dec 25 '09 at 1:50
oooh I see, I then add this string to the end of the URL in the get call. I was thinking PHP serialize. Sorry. Thanks! – nute Dec 25 '09 at 1:56
49  
.ajaxSubmit()/.ajaxForm() are not core jQuery functions- you need the jQuery Form Plugin – Yarin Jun 5 '12 at 2:58
show 2 more comments

There's also the submit event, which can be triggered like this $("#form_id").submit(). You'd use this method if the form is well represented in HTML already. You'd just read in the page, populate the form inputs with stuff, then call .submit(). It'll use the method and action defined in the form's declaration, so you don't need to copy it into your javascript.

examples

share|improve this answer
13  
if you delete your post, you get the penalty points that have been taken away from you back. – Spider Dec 20 '12 at 7:20
This will submit the form, but not via AJAX, so doesn't answer the question. – superluminary May 8 at 10:11

This is a simple reference:

// this is the id of the submit button
$("#submitButtonId").click(function() {

    var url = "path/to/your/script.php"; // the script where you handle the form input.

    $.ajax({
           type: "POST",
           url: url,
           data: $("#idForm").serialize(), // serializes the form's elements.
           success: function(data)
           {
               alert(data); // show response from the php script.
           }
         });

    return false; // avoid to execute the actual submit of the form.
});

I hope it helps you.

share|improve this answer
2  
But form.serialize() can't post <input type="file"> in IE – macio.Jun Jan 19 at 19:25
Great answer for normal form submission! – The Sheek Geek Feb 4 at 21:36
12  
It's better to put this inside $("#idForm").submit(...) rather than $("#submitButtonId").click(...) – Renato Feb 12 at 12:54
@Renato i need it to work with .submit() did you manage it? – alex Feb 16 at 20:52
@alex Yes. It should't be any problem (Maybe some differences if your're using this) – Renato Feb 21 at 18:49
show 2 more comments

Another similar solution using the attributes defined on the form element:

    <form id="contactForm1" action="/your_url" method="post">
    ...
</form>

<script type="text/javascript">
    var frm = $('#contactForm1');
    frm.submit(function () {
        $.ajax({
            type: frm.attr('method'),
            url: frm.attr('action'),
            data: frm.serialize(),
            success: function (data) {
                alert('ok');
            }
        });

        return false;
    });
</script>
share|improve this answer
1  
Very generic, and reusable, +1 – fguillen Mar 8 at 14:37
1  
This is a better solution, since it pulls the url and method from the form itself. I'd prefer it if it wasn't presented as inline JavaScript though. – superluminary May 7 at 12:09
1  
Also, return false should be event.preventDefault(); – superluminary May 7 at 12:10

You can also use FormData (But not available in IE):

var formData = new FormData(document.getElementsByName('yourForm')[0]);// yourForm: form selector        
            $.ajax({
                type: "POST",
                url: "yourURL",// where you wanna post
                data: formData,
                processData: false,
                contentType: false,
                error: function(jqXHR, textStatus, errorMessage) {
                   console.log(errorMessage); // Optional
                },
                success: function(data) {console.log(data)} 
            });

How to use FormData: https://developer.mozilla.org/en-US/docs/DOM/XMLHttpRequest/FormData/Using_FormData_Objects

share|improve this answer
Thanks for your answers +1 – Lalit Kumar Maurya May 7 at 10:47
2  
I see FormData is now supported by IE10. In a few years this will be the preferred solution. – superluminary May 8 at 10:09

There are a few things you need to bear in mind.

1. There are several ways to submit a form

  • using the submit button
  • by pressing enter
  • by triggering a submit event in JavaScript
  • possibly more depending on the device or future device.

We should therefore bind to the submit event, not the click event. This will ensure our code works on all devices and assistive technologies now and in the future.

2. Hijax

The user may not have JavaScript enabled. A hijax pattern is good here, where we gently take control of the form using JavaScript, but leave it submittable if JavaScript fails.

We should pull the URL and method from the form, so if the HTML changes, we don't need to update the JavaScript.

3. Unobtrusive JavaScript

Using event.preventDefault() instead of return false is good practice as it allows the event to bubble up. This lets other scripts tie into the event, for example analytics scripts which may be monitoring user interactions.

Script should properly be linked to in the head section of the page, and enhance the user experience, not get in the way.

Code

Assuming you aggree with all the above, and you want to catch the submit event, and handle it via AJAX (a hijax pattern), you could do something like this:

$(function() {
  $('form.my_form').submit(function(event) {
    var form = $(this);
    $.ajax({
      type: form.attr('method'),
      url: form.attr('action'),
      data: form.serialize()
    }).done(function() {
      // Optionally alert the user of success here...
    }).fail(function() {
      // Optionally alert the user of an error here...
    });
    event.preventDefault(); // Prevent the form from submitting via the browser.
  });
});

You can manually trigger a form submission whenever you like via JavaScript using something like:

$('form.my_form').trigger('submit');
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.