vote up 2 vote down star
2

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');
flag

6 Answers

vote up 10 vote down check

Add

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

or

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

to your form's definition.

link|flag
vote up 1 vote down

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();
link|flag
vote up 0 vote down

and how I read the hidden on New Window ?

link|flag
vote up 0 vote down

form.nameOfHiddenField in the above case is id

link|flag
vote up 0 vote down

Thanks it's really helpful

link|flag
vote up 0 vote down

Thanks for giving this suggesion. its working fine for me..Thanks alot

Murali

link|flag

Your Answer

Get an OpenID
or

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