how to mkae a link a pop up

Discussion in 'HTML & Website Design' started by jto, Aug 7, 2008.

  1. #1
    I'm designing an ad landing page for a client. I need to have it set that when a customer clicks on the "terms and conditions" link it opens as a pop up. One of those 400 or 500px by 700 pop ups or something like that size that don't have a nav toolbar or URL.

    hard to explain but i think some of you will know what i'm talking about.

    thanks for the help!
     
    jto, Aug 7, 2008 IP
  2. EIx

    EIx Peon

    Messages:
    170
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
  3. textlinkspro

    textlinkspro Peon

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    <script language="JavaScript">
    <!--
    function win() {
    window.open("window.php","Window","menubar=no,width=400,height=700,toolbar=no");
    }
    //-->
    </script>

    <a href="javascript:win()"; return true;">Open Window</a>
     
    textlinkspro, Aug 7, 2008 IP
  4. kaushik nm

    kaushik nm Peon

    Messages:
    171
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    <a href="http://www.design.bpupil.com">Design by Kaushik</a> | <a href="http://www.google.com">Google</a> | <a href="http://www.yahoo.com" target="_blank">Yahoo</a>


    simple example..
     
    kaushik nm, Aug 7, 2008 IP
  5. kaushik nm

    kaushik nm Peon

    Messages:
    171
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #5
    target would be blank..
     
    kaushik nm, Aug 7, 2008 IP
  6. jto

    jto Peon

    Messages:
    94
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    thanks for the help guys! I got it
     
    jto, Aug 7, 2008 IP