Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit shows you how to submit a form that you create via JavaScript via post. Below is my modified code.

var form = document.createElement("form");
		    form.setAttribute("method", "post");
		    form.setAttribute("action", "test.jsp");

		        var hiddenField = document.createElement("input");		
		        hiddenField.setAttribute("name", "id");
		        hiddenField.setAttribute("value", "bob");
		        form.appendChild(hiddenField);
		        document.body.appendChild(form);    // Not entirely sure if this is necessary			
		        form.submit();

What I would like to do is open the results in a new window. I am currentley using something like this to open a page in a new window:

onclick=window.open(test.html,'','scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,status=no');
share|improve this question

4 Answers

up vote 92 down vote accepted

Add

<form target="_blank" ...></form>

or

form.setAttribute("target", "_blank");

to your form's definition.

share|improve this answer

If you want to create and submit your form from Javascript as is in your question and you want to create popup window with custom features I propose this solution (I put comments above the lines i added):

var form = document.createElement("form");
form.setAttribute("method", "post");
form.setAttribute("action", "test.jsp");

// setting form target to a window named 'formresult'
form.setAttribute("target", "formresult");

var hiddenField = document.createElement("input");              
hiddenField.setAttribute("name", "id");
hiddenField.setAttribute("value", "bob");
form.appendChild(hiddenField);
document.body.appendChild(form);

// creating the 'formresult' window with custom features prior to submitting the form
window.open(test.html, 'formresult', 'scrollbars=no,menubar=no,height=600,width=800,resizable=yes,toolbar=no,status=no');

form.submit();
share|improve this answer
6  
+1 Better than the accepted answer, since it actually puts the result in the popup with the options the OP wanted. – NickC Mar 6 '10 at 1:34
1  
Used this method and it worked like a charm. – donut Nov 22 '10 at 15:29
1  
Answered exactly what was asked. Thanks! – Justin Rassier Jan 25 '11 at 17:20
1  
@mjaggard: What did you add? It might be worth suggesting an edit to this answer. – Michael Myers Nov 21 '11 at 21:00
1  
@SaurabhNanda As far as I can tell, target attribute on form element is not deprecated in HTML 4.01 Transitional and apparently is to stay in HTML 5. – Marko Dumic Jun 27 '12 at 13:58
show 5 more comments

I know this basic method:

1)
<input type=”image” src=”submit.png”> (in any place)
2)
<form name=”print”>
<input type=”hidden” name=”a” value=”<?= $a ?>”>
<input type=”hidden” name=”b” value=”<?= $b ?>”>
<input type=”hidden” name=”c” value=”<?= $c ?>”>
</form>
3)
<script>
$(‘#submit’).click(function(){
open(”,”results”);
with(document.print)
{
method = “POST”;
action = “results.php”;
target = “results”;
submit();
}
});
</script>

Works!

share|improve this answer
1  
thats with jquery ! he asks for pure JS – Aviatrix Mar 6 '10 at 1:26
var urlAction = 'whatever.php';
var data = {param1:'value1'};

var $form = $('<form target="_blank" method="POST" action="' + urlAction + '">');
$.each(data, function(k,v){
    $form.append('<input type="hidden" name="' + k + '" value="' + v + '">');
});
$form.submit();
share|improve this answer
Am I missing something, or do you still need to .append the close form tag? – theJollySin Oct 26 '12 at 21:29
I think this is incomplete after append the form you should remove it for a best practice. – nahum Nov 16 '12 at 17:42

protected by Community Nov 21 '11 at 20:59

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.