Thorsten: Form Action an ein Popup

Beitrag lesen

Hi,

versuch mal Folgendes:

<input type="button"... onClick="sendForm"...>

und im Script:

function sendForm()
 {
  t_winNew = window.open("about:blank","fenstername","resizable=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,toolbar=0,width=deineweite,height=deinehoehe");
  window.document.deinformname.target = "fenstername";
  window.document.deinformname.action = "deinezieldatei";
  window.document.deinformname.submit();
  window.document.deinformname.action = "createmeterreport.cfm";
  window.document.deinformname.target = "_self";
  t_winNew.focus();
 }

Mfg
Thorsten