up vote 138 down vote favorite
75
share [g+] share [fb]

I'm trying to direct a browser to a different page. If I wanted a GET request, I might say

document.location.href = 'http://example.com/q=a';

But the resource I'm trying to access won't respond properly unless I use a POST request. If this were not dynamically generated, I might use the HTML

<form action="http://example.com/" method="POST">
  <input type="hidden" name="q" value="a">
</form>

Then I would just submit the form from the DOM.

But really I would like JavaScript code that allows me to say

post_to_url('http://example.com/', {'q':'a'});

What's the best cross browser implementation?

Edit

I'm sorry I was not clear. I need a solution that changes the location of the browser, just like submitting a form. If this is possible with XMLHttpRequest, it is not obvious. And this should not be asynchronous, nor use XML, so Ajax is not the answer.

link|improve this question

feedback

17 Answers

up vote 192 down vote accepted
function post_to_url(path, params, method) {
    method = method || "post"; // Set method to post by default, if not specified.

    // The rest of this code assumes you are not using a library.
    // It can be made less wordy if you use one.
    var form = document.createElement("form");
    form.setAttribute("method", method);
    form.setAttribute("action", path);

    for(var key in params) {
        var hiddenField = document.createElement("input");
        hiddenField.setAttribute("type", "hidden");
        hiddenField.setAttribute("name", key);
        hiddenField.setAttribute("value", params[key]);

        form.appendChild(hiddenField);
    }

    document.body.appendChild(form);
    form.submit();
}

There is more stuff you can do - cleanup after DOM manipulation, ensuring that the keys is part of the hasOwnProperty list, etc., but this should get you started.

link|improve this answer
1  
Your guess was right, it's not necessary to append the form. Looks good – Joseph Holsten Sep 25 '08 at 16:14
4  
This doesn't work in IE, as the name won't be set on the hidden fields: msdn.microsoft.com/en-us/library/ms534184(VS.85).aspx – insin Sep 25 '08 at 18:14
3  
for IE6 it is required to append the form to the document in order to submit it. (example as shown works fine fine in IE6) – Jacco Sep 6 '09 at 12:30
3  
In FireFox 3.0.10 the document.body.appendChild(form); is necessary. However in Safari its not necessary. – neoneye Sep 17 '09 at 15:39
1  
Sure. Relative paths work fine too. – Rakesh Pai Sep 9 '10 at 11:22
show 9 more comments
feedback

If you have Prototype installed, you can tighten up the code to generate and submit the hidden form like this:

 var form = new Element('form',
                        {method: 'post', action: 'http://example.com/'});
 form.insert(new Element('input',
                         {name: 'q', value: 'a', type: 'hidden'}));
 $(document.body).insert(form);
 form.submit();
link|improve this answer
feedback

Using the createElement function provided in this answer, which is necessary due to IE's brokenness with the name attribute on elements created normally with document.createElement:

function postToURL(url, values)
{
    values = values || {};

    var form = createElement("form", {action: url,
                                      method: "POST",
                                      style: "display: none"});
    for (var property in values)
    {
        if (values.hasOwnProperty(property))
        {
            var value = values[property];
            if (value instanceof Array)
            {
                for (var i = 0, l = value.length; i < l; i++)
                {
                    form.appendChild(createElement("input", {type: "hidden",
                                                             name: property,
                                                             value: value[i]}));
                }
            }
            else
            {
                form.appendChild(createElement("input", {type: "hidden",
                                                         name: property,
                                                         value: value}));
            }
        }
    }
    document.body.appendChild(form);
    form.submit();
    document.body.removeChild(form);
}
link|improve this answer
feedback

A simple quick'n'dirty implementation of @Aaron answer :

document.body.innerHTML += '<form id="dynForm" action="http://example.com/" method="post"><input type="hidden" name="q" value="a"></form>';
document.getElementById("dynForm").submit();

Of course, you should rather use a javascript framework such as Prototype or jQuery...

link|improve this answer
1  
Is there a way to do this without there being a web page loaded in the current browser window/tab? – pbreitenbach Sep 24 '10 at 20:37
1  
yes use the attribute target='_blank' in the form element – Spidfire Apr 26 '11 at 16:03
feedback

You can dynamically create a form, and then post that.

link|improve this answer
feedback

Three options here.

  1. Standard Javascript Answer: Use a framework! Most Ajax frameworks will have abstracted you an easy way to make an XMLHTTPRequest POST

  2. Make the XMLHTTPRequest request yourself, passing post into the open method instead of get. (more info)

  3. Via Javascript, dynamically create a form, add an action, add your inputs, and submit that.

link|improve this answer
3  
XMLHTTPRequest doesn't update the window. Are you trying to say I should end with the AJAX with a document.write(http.responseText)? – Joseph Holsten Sep 25 '08 at 16:12
Why should one add 30k+ to he's project if he dosent do anything else with the framework ? – Dementic Nov 7 '11 at 15:26
feedback

One solution is to generate the form and submit it. One implementation is

function post_to_url(url, params) {
    var form = document.createElement('form');
    form.action = url;
    form.method = 'POST';

    for (var i in params) {
        if (params.hasOwnProperty(i)) {
            var input = document.createElement('input');
            input.type = 'hidden';
            input.name = i;
            input.value = params[i];
            form.appendChild(input);
        }
    }

    form.submit();
}

So I can implement a URL shortening bookmarklet with a simple

javascript:post_to_url('http://is.gd/create.php', {'URL': location.href});
link|improve this answer
feedback

Rakesh Pai answer is amazing but there is an issue that occurs for me (in safari) when you try to post a form with a field called submit. For example post_to_url("http://google.com/",{ submit: "submit" } );. I have patched the function slightly to walk around this variable space collision.

    function post_to_url(path, params, method) {
        method = method || "post";

        var form = document.createElement("form");

        //move the submit function to another variable
        //so that it doesn't get over written
        form._submit_function_ = form.submit;

        form.setAttribute("method", method);
        form.setAttribute("action", path);

        for(var key in params) {
            var hiddenField = document.createElement("input");
            hiddenField.setAttribute("type", "hidden");
            hiddenField.setAttribute("name", key);
            hiddenField.setAttribute("value", params[key]);

            form.appendChild(hiddenField);
        }

        document.body.appendChild(form);
        form._submit_function_(); //call the renamed function
    }
    post_to_url("http://google.com/", { submit: "submit" } ); //works!
link|improve this answer
+1 : better than the accepted answer – victor Jan 16 at 8:59
feedback

This would be a version of the selected answer using JQuery.

// Post to the provided URL with the specified parameters.
function post(path, parameters) {
    var form = $('<form></form>');

    form.attr("method", "post");
    form.attr("action", path);

    $.each(parameters, function(key, value) {
        var field = $('<input></input>');

        field.attr("type", "hidden");
        field.attr("name", key);
        field.attr("value", value);

        form.append(field);
    });

    // The form needs to be apart of the document in
    // order for us to be able to submit it.
    $(document.body).append(form);
    form.submit();
}
link|improve this answer
This doesn't work, not in Chrome 10 with JQuery 1.2.6 anyway. You can't set the type of a field after creating it. "Uncaught type property can't be changed". See stackoverflow.com/questions/3526059/… – mhenry1384 Apr 4 '11 at 21:52
It doesn't work in Firefox 4 either because you can't append to a document, you have to append to a document body. – mhenry1384 Apr 5 '11 at 19:19
Fixed: now appending to document.body – Ryan Delucchi Apr 5 '11 at 21:01
feedback

You could dynamically add the form using DHTML then submit

link|improve this answer
feedback

You could use a library like JQuery and its $.post method.

link|improve this answer
feedback

Here is how I wrote it using JQuery. Tested in firefox and IE.

function postToUrl(url, params, newWindow)
{
    var form = $('<form>');
    form.attr('action', url);
    form.attr('method', 'POST');
    if(newWindow){ form.attr('target', '_blank'); }

    var addParam = function(paramName, paramValue){
        var input = $('<input type="hidden">');
        input.attr({ 'id':     paramName,
                     'name':   paramName,
                     'value':  paramValue });
        form.append(input);
    };

    // Params is an Array.
    if(params instanceof Array){
        for(var i=0; i<params.length; i++){
            addParam(i, params[i]);
        }
    }

    // Params is an Associative array or Object.
    if(params instanceof Object){
        for(var key in params){
            addParam(key, params[key]);
        }
    }

    // Submit the form, then remove it from the page
    form.appendTo(document.body);
    form.submit();
    form.remove();
}
link|improve this answer
Looks good, but didn't work for me. – Eric Wilson Nov 1 '10 at 15:56
Worked for me. Thanks. (Tested in Chrome) – dannie.f Dec 23 '10 at 13:43
I think the problem here might be that the form is removed before the submission returns. I've heard that in some browsers if you move or remove the form before the submit completes, the handlers won't fire. Instead, remove the form from the document in the handler. – Jeff DQ May 12 '11 at 0:18
feedback

You could make an AJAX call (likely using a library such as using Prototype.js or JQuery). AJAX can handle both GET and POST options.

link|improve this answer
2  
Using XMLHttpRequest wouldn't direct the browser to another page. – insin Sep 25 '08 at 15:35
feedback

The Prototype library includes a Hashtable object, with a ".toQueryString()" method, which allows you to easily turn a javascript Object/structure into a query-string style string. Since the post requires the "body" of the request to be a query-string formatted string, this allows your AJAX reqest to work properly as a post. Here's an example using prototype:

$req = new Ajax.Request("http://foo.com/bar.php",{
  method: 'post',
  parameters: $H({
    name: 'Diodeus',
    question: 'Javascript Post Request like a Form Request',
    ...
  }).toQueryString();
};
link|improve this answer
feedback

I'd go down the Ajax route as others suggested with something like:

var xmlHttpReq = false;

var self = this;
// Mozilla/Safari
if (window.XMLHttpRequest) {
    self.xmlHttpReq = new XMLHttpRequest();
}
// IE
else if (window.ActiveXObject) {
    self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
}

self.xmlHttpReq.open("POST", "YourPageHere.asp", true);
self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');

self.xmlHttpReq.setRequestHeader("Content-length", QueryString.length);



self.xmlHttpReq.send("?YourQueryString=Value");

}

link|improve this answer
feedback

This is like Alan's option 2 (above). How to instantiate the httpobj is left as an excercise.

httpobj.open("POST", url, true);
httpobj.setRequestHeader('Content-Type','application/x-www-form-urlencoded; charset=UTF-8');
httpobj.onreadystatechange=handler;
httpobj.send(post);
link|improve this answer
feedback

This is based on beauSD's code using jQuery. It is improved so it works recursively on objects.

function post(url, params, urlEncoded, newWindow) {
    var form = $('<form />').hide();
    form.attr('action', url)
        .attr('method', 'POST')
        .attr('enctype', urlEncoded ? 'application/x-www-form-urlencoded' : 'multipart/form-data');
    if(newWindow) form.attr('target', '_blank');

    function addParam(name, value, parent) {
        var fullname = (parent.length > 0 ? (parent + '[' + name + ']') : name);
        if(value instanceof Object) {
            for(var i in value) {
                addParam(i, value[i], fullname);
            }
        }
        else $('<input type="hidden" />').attr({name: fullname, value: value}).appendTo(form);
    };

    addParam('', params, '');

    $('body').append(form);
    form.submit();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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