Javascript Post Request like a Form Submit - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T18:29:28Zhttp://stackoverflow.com/feeds/question/133925http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit18Javascript Post Request like a Form SubmitJoseph Holsten2008-09-25T15:15:43Z2009-01-23T23:53:02Z
<p>I'm trying to direct a browser to a different page. If I wanted a GET request, I might say</p>
<pre><code>document.location.href = 'http://example.com/q=a';
</code></pre>
<p>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</p>
<pre><code><form action="http://example.com/" method="POST">
<input type="hidden" name="q" value="a">
</form>
</code></pre>
<p>Then I would just submit the form from the DOM.</p>
<p>But really I would like JavaScript that allows me to say</p>
<pre><code>post_to_url('http://example.com/', {'q':'a'});
</code></pre>
<p>What's the best cross browser implementation?</p>
<p><strong>Edit</strong> 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.</p>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/133930#1339303Answer by AaronSieb for Javascript Post Request like a Form SubmitAaronSieb2008-09-25T15:19:02Z2008-09-25T15:19:02Z<p>You can dynamically create a form, and then post that.</p>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/133937#1339371Answer by AnthonyWJones for Javascript Post Request like a Form SubmitAnthonyWJones2008-09-25T15:20:04Z2008-09-25T15:20:04Z<p>You could dynamically add the form using DHTML then submit</p>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/133951#1339510Answer by Diodeus for Javascript Post Request like a Form SubmitDiodeus2008-09-25T15:22:14Z2008-09-25T15:22:14Z<p>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.</p>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/133961#133961-1Answer by Bill Turner for Javascript Post Request like a Form SubmitBill Turner2008-09-25T15:23:34Z2008-09-25T15:23:34Z<p>You could use a library like JQuery and its <a href="http://docs.jquery.com/Ajax/jQuery.post" rel="nofollow">$.post method</a>.</p>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/133979#1339792Answer by Alan Storm for Javascript Post Request like a Form SubmitAlan Storm2008-09-25T15:26:03Z2008-09-25T15:26:03Z<p>Three options here.</p>
<ol>
<li><p>Standard Javascript Answer: Use a framework! Most Ajax frameworks will have abstracted you an easy way to make an XMLHTTPRequest POST</p></li>
<li><p>Make the XMLHTTPRequest request yourself, passing post into the open method instead of get. (<a href="http://www.openjs.com/articles/ajax_xmlhttp_using_post.php" rel="nofollow">more info</a>)</p></li>
<li><p>Via Javascript, dynamically create a form, add an action, add your inputs, and submit that.</p></li>
</ol>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/133996#133996-1Answer by Adam N for Javascript Post Request like a Form SubmitAdam N2008-09-25T15:28:34Z2008-09-25T15:28:34Z<p>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:</p>
<pre><code>$req = new Ajax.Request("http://foo.com/bar.php",{
method: 'post',
parameters: $H({
name: 'Diodeus',
question: 'Javascript Post Request like a Form Request',
...
}).toQueryString();
};
</code></pre>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/133997#13399716Answer by Rakesh Pai for Javascript Post Request like a Form SubmitRakesh Pai2008-09-25T15:28:53Z2008-09-25T15:28:53Z<pre><code>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); // Not entirely sure if this is necessary
form.submit();
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/134003#1340034Answer by insin for Javascript Post Request like a Form Submitinsin2008-09-25T15:29:47Z2008-09-25T18:59:14Z<p>Using the <code>createElement</code> function provided in <a href="http://stackoverflow.com/questions/118693/how-do-you-dynamically-create-a-radio-button-in-javascript-that-works-in-all-br#120372">this answer</a>, which is necessary due to <a href="http://msdn.microsoft.com/en-us/library/ms534184(VS.85).aspx" rel="nofollow">IE's brokenness with the name attribute</a> on elements created normally with <code>document.createElement</code>:</p>
<pre><code>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);
}
</code></pre>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/134033#1340333Answer by Alexandre Victoor for Javascript Post Request like a Form SubmitAlexandre Victoor2008-09-25T15:33:36Z2008-09-25T15:33:36Z<p>A simple quick'n'dirty implementation of @Aaron answer :</p>
<pre><code>document.body.innerHTML += '<form id="dynForm" action="http://example.com/" method="post"><input type="hidden" name="q" value="a"></form>';
document.getElementById("dynForm").submit();
</code></pre>
<p>Of course, you should rather use a javascript framework such as Prototype or jQuery...</p>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/134069#134069-1Answer by Katy for Javascript Post Request like a Form SubmitKaty2008-09-25T15:39:24Z2008-09-25T15:39:24Z<p>I'd go down the Ajax route as others suggested with something like:</p>
<p><code></p>
<pre><code>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");
</code></pre>
<p>}</p>
<p></code></p>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/134082#134082-1Answer by Revah for Javascript Post Request like a Form SubmitRevah2008-09-25T15:40:48Z2008-09-25T15:40:48Z<p>This is like Alan's option 2 (above). How to instantiate the httpobj is left as an excercise.</p>
<pre><code>httpobj.open("POST", url, true);
httpobj.setRequestHeader('Content-Type','application/x-www-form-urlencoded; charset=UTF-8');
httpobj.onreadystatechange=handler;
httpobj.send(post);
</code></pre>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/134222#1342221Answer by Joseph Holsten for Javascript Post Request like a Form SubmitJoseph Holsten2008-09-25T16:05:21Z2008-09-25T16:05:21Z<p>One solution is to generate the form and submit it. One implementation is</p>
<pre><code>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();
}
</code></pre>
<p>So I can implement a URL shortening bookmarklet with a simple</p>
<pre><code>javascript:post_to_url('http://is.gd/create.php', {'URL': location.href});
</code></pre>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/475112#4751124Answer by Head for Javascript Post Request like a Form SubmitHead2009-01-23T23:53:02Z2009-01-23T23:53:02Z<p>If you have Prototype installed, you can tighten up the code to generate and submit the hidden form like this:</p>
<pre><code> 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();
</code></pre>