137

Is there a way to use javascript and JQuery to add some additional fields to be sent from a HTTP form using POST?

I mean:

<form action="somewhere" method="POST" id="form">
  <input type="submit" name="submit" value="Send" />
</form>

<script type="text/javascript">
  $("#form").submit( function(eventObj) {
    // I want to add a field "field" with value "value" here
    // to the POST data

    return true;
  });
</script>
hernanvicente
  • 876
  • 8
  • 18
Spook
  • 24,132
  • 15
  • 84
  • 153
  • 2
    possible duplicate of [jQuery - add additional parameters on submit (NOT ajax)](http://stackoverflow.com/questions/2530635/jquery-add-additional-parameters-on-submit-not-ajax) – Marijn Mar 25 '14 at 13:01

7 Answers7

192

Yes.You can try with some hidden params.

  $("#form").submit( function(eventObj) {
      $("<input />").attr("type", "hidden")
          .attr("name", "something")
          .attr("value", "something")
          .appendTo("#form");
      return true;
  });
molasses
  • 55
  • 6
Suresh Atta
  • 118,038
  • 37
  • 189
  • 297
  • 42
    `.appendTo(this)` would probably be better. – jcuenod Jun 12 '15 at 10:37
  • 4
    @jcuenod original `appendTo('#form')` is much better, because such approach allows submit another form with values from this one. – Andremoniy Oct 19 '15 at 14:39
  • 9
    You'll have to add some extra logic to avoid accumulating these input with each submit. – amos Nov 18 '16 at 14:09
  • 2
    You'll probably want to remove the input element before you add it in case it already exists `$(this).find("input[name="+"something"+"]").remove();` – K Vij Jun 04 '20 at 04:50
  • If it's not AJAX the form and the appended field is gone on submission. – ed22 Apr 08 '22 at 16:30
58

Try this:

$('#form').submit(function(eventObj) {
    $(this).append('<input type="hidden" name="field_name" value="value" /> ');
    return true;
});
user664833
  • 16,967
  • 18
  • 88
  • 129
Khawer Zeshan
  • 9,120
  • 6
  • 36
  • 61
  • I need to add a file field dynamically. I tried having type=file, and the value also as the file (I'm using WebKitDirectory, so I actually get the file objects), however it never seems to pass it. The input text always gets passed though. Please help me out! – Swaathi Kakarla Apr 08 '15 at 10:40
  • My preferred answer due to using `this` instead of the redundant `#form` – rinogo Apr 30 '15 at 16:34
18
$('#form').append('<input type="text" value="'+yourValue+'" />');
de_nuit
  • 631
  • 7
  • 13
12

You can add a hidden input with whatever value you need to send:

$('#form').submit(function(eventObj) {
    $(this).append('<input type="hidden" name="someName" value="someValue">');
    return true;
});
user664833
  • 16,967
  • 18
  • 88
  • 129
Mohammad Adil
  • 44,013
  • 17
  • 87
  • 109
10

This works:

var form = $(this).closest('form');

form = form.serializeArray();

form = form.concat([
    {name: "customer_id", value: window.username},
    {name: "post_action", value: "Update Information"}
]);

$.post('/change-user-details', form, function(d) {
    if (d.error) {
        alert("There was a problem updating your user details")
    } 
});
Jeff Lowery
  • 2,263
  • 2
  • 29
  • 35
9

May be useful for some:

(a function that allow you to add the data to the form using an object, with override for existing inputs, if there is) [pure js]

(form is a dom el, and not a jquery object [jqryobj.get(0) if you need])

function addDataToForm(form, data) {
    if(typeof form === 'string') {
        if(form[0] === '#') form = form.slice(1);
        form = document.getElementById(form);
    }

    var keys = Object.keys(data);
    var name;
    var value;
    var input;

    for (var i = 0; i < keys.length; i++) {
        name = keys[i];
        // removing the inputs with the name if already exists [overide]
        // console.log(form);
        Array.prototype.forEach.call(form.elements, function (inpt) {
             if(inpt.name === name) {
                 inpt.parentNode.removeChild(inpt);
             }
        });

        value = data[name];
        input = document.createElement('input');
        input.setAttribute('name', name);
        input.setAttribute('value', value);
        input.setAttribute('type', 'hidden');

        form.appendChild(input);
    }

    return form;
}

Use :

addDataToForm(form, {
    'uri': window.location.href,
     'kpi_val': 150,
     //...
});

you can use it like that too

var form = addDataToForm('myFormId', {
    'uri': window.location.href,
     'kpi_val': 150,
     //...
});

you can add # if you like too ("#myformid").

Mohamed Allal
  • 13,824
  • 2
  • 79
  • 77
0

Expanding upon Khawer's answer, you could refrain from using jQuery - for consistency, eg.
<input type="hidden" name="field_name" value="value" />

asciidude
  • 257
  • 1
  • 3
  • 16