Javascript Post Request like a Form Submit - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T18:29:28Z http://stackoverflow.com/feeds/question/133925 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit 18 Javascript Post Request like a Form Submit Joseph Holsten 2008-09-25T15:15:43Z 2009-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>&lt;form action="http://example.com/" method="POST"&gt; &lt;input type="hidden" name="q" value="a"&gt; &lt;/form&gt; </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#133930 3 Answer by AaronSieb for Javascript Post Request like a Form Submit AaronSieb 2008-09-25T15:19:02Z 2008-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#133937 1 Answer by AnthonyWJones for Javascript Post Request like a Form Submit AnthonyWJones 2008-09-25T15:20:04Z 2008-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#133951 0 Answer by Diodeus for Javascript Post Request like a Form Submit Diodeus 2008-09-25T15:22:14Z 2008-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 -1 Answer by Bill Turner for Javascript Post Request like a Form Submit Bill Turner 2008-09-25T15:23:34Z 2008-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#133979 2 Answer by Alan Storm for Javascript Post Request like a Form Submit Alan Storm 2008-09-25T15:26:03Z 2008-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 -1 Answer by Adam N for Javascript Post Request like a Form Submit Adam N 2008-09-25T15:28:34Z 2008-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#133997 16 Answer by Rakesh Pai for Javascript Post Request like a Form Submit Rakesh Pai 2008-09-25T15:28:53Z 2008-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#134003 4 Answer by insin for Javascript Post Request like a Form Submit insin 2008-09-25T15:29:47Z 2008-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 &lt; 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#134033 3 Answer by Alexandre Victoor for Javascript Post Request like a Form Submit Alexandre Victoor 2008-09-25T15:33:36Z 2008-09-25T15:33:36Z <p>A simple quick'n'dirty implementation of @Aaron answer :</p> <pre><code>document.body.innerHTML += '&lt;form id="dynForm" action="http://example.com/" method="post"&gt;&lt;input type="hidden" name="q" value="a"&gt;&lt;/form&gt;'; 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 -1 Answer by Katy for Javascript Post Request like a Form Submit Katy 2008-09-25T15:39:24Z 2008-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 -1 Answer by Revah for Javascript Post Request like a Form Submit Revah 2008-09-25T15:40:48Z 2008-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#134222 1 Answer by Joseph Holsten for Javascript Post Request like a Form Submit Joseph Holsten 2008-09-25T16:05:21Z 2008-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#475112 4 Answer by Head for Javascript Post Request like a Form Submit Head 2009-01-23T23:53:02Z 2009-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>