> I'm looking for a simple bit of javascript to do the same for the form, 
> something like form.target = window.open()

Hi Chris,

You could create a javascript function and then call it from within the
action attribute of the form tag:

<script>
function test()
{
        window.open(...);
}
</script>

<form name="testForm" action="javascript:test();">
...
</form>



My other question would be do you really need to open a separate window to
go to PayPal? I haven't used this feature, but if PayPal will return you
eventually to your site, couldn't you just go there in the same window? Just
a thought.


Regards,
Kepler Gelotte
http://www.neigborwebmaster.com




*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to