Hey guys,
I got a problem with a form tag.
When i use a form tag and the action is pointed to a javascript function to open a new window, i just cant read the post vars?!?!
Really strange because when i just open it in the same window the vars work, but in the javascript it doesn't.
I use this snall line of javascript to open an new window in de action part of the form tag :
<script type="text/javascript">
function openScript(url, width, height) {
var Win = window.open(url,"openScript","width=" + width + ",height=" + height + ",resizable=no,scrollbars=yes,menubar=no,status=no" );
}
</script>
Do u guys know how to use such function and that u DO get the post vars??
It would really help me. 😃
Vinnie