Results 1 to 3 of 3

Thread: Looking for code for HTML link
      
   

  1. #1
    sactotitan is offline Private First Class
    Join Date
    Feb 2009
    Posts
    9

    Default Looking for code for HTML link

    Hey All,

    I'm setting up a donations page for my father-in-laws humanitarian initiative and have already setup his account in paypal for its safer, easier way to pal online - LOL! They gave a HTML script for the 'donate' button and I added if just fine - no problems.

    EXCEPT - when you click on the donate button, you're taken directly to paypal to complete the donation and my website is gone. I don't like that. I'm trying to locate the html code that'll open paypal in a new window. Usually when specifing link with BV it's very easy to do that in the properties, but when adding HTML code, I do not see that option.

    Any ideas? please?

    Here's the site so you can see for yourself:

    www.patriotworldfarms.com

  2. #2
    Join Date
    Feb 2006
    Location
    Earth
    Posts
    8,721

    Default Re: Looking for code for HTML link

    Not sure if you are meant to do this? But the 1st part of the code sould be changed from ..........

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

    To.......

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

    Seems to work ok.

  3. #3
    sactotitan is offline Private First Class
    Join Date
    Feb 2009
    Posts
    9

    Default Re: Looking for code for HTML link

    YOU ROCK!!! That did it! Thank you very very much!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49