Hi,

I have a form on my page. The form action is linked to itself so that the
values entered will refresh the page accordingly. Is it possible to add
another button to the form that utilises my JavaScript popup function and
takes the values from the same form?

function openQueryWindow(URL) {
  var args
="left=150,top=100,width=742,height=402,toolbar=no,location=no,directories=n
o,status=nos,menubar=no,scrollbars=yes,resizable=yes";
  var newWindow = window.open(URL, "query", args);
  newWindow.focus();
}

Thanks for your help

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to