I have a virtual form with inputs like this...
and when i do a document.forms[0].submit(); how do I get it to submit to a window.open with specific options like toolbar=no, location=no , etc. ?? Can i put javascript in the target tag or something?
Code:
newInput = document.createElement("INPUT");
newInput.type = "hidden";
newInput.name = "deprecated_form_id";
newInput.value = deprDocID;
document.forms[0].appendChild(newInput);
Comment