Link to home
Start Free TrialLog in
Avatar of galneweinhaw
galneweinhaw

asked on

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">

I am adding a paypal donation button to my website, but the button is in a frame and when it is pressed it opens the paypal site opens in the frame and not as a new page, or in the main frame.

Is there a way I can fix this?

Thanks.

the code is:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">


Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

try like:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
ASKER CERTIFIED SOLUTION
Avatar of GwynforWeb
GwynforWeb
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of galneweinhaw
galneweinhaw

ASKER

target="_top" worked


target="_blank" just opened it inside the frame.
thx for the points, :-)