how can I make a pop up ads like sendspace?

Discussion in 'JavaScript' started by kk890, Mar 12, 2009.

  1. #1
    such as this link,
    http://www.sendspace.com/file/l1fcny

    when I go to sendspace dwonload page link, there is no any pop up ads at all,
    but when I click to download the file, it will pop up an ads in another page,

    how to do such popup ads?
    thx
     
    kk890, Mar 12, 2009 IP
  2. Beaconwebsol

    Beaconwebsol Peon

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Actually they have added onclick event to add popup.

    e.g. code is given below
    <a href="link-here" onclick="return runads()"></a>

    now runads javascript is defined as follows

    function runads()
    {
    newin = window.open('link-to-popup-page', 'popad', 'width=800, height=600, toolbar=yes, location=yes, menubar=yes, status=yes, resizable=yes, scrollbars=yes');
    newin.blur()
    window.focus()
    return true;
    }
     
    Beaconwebsol, Mar 12, 2009 IP
  3. kk890

    kk890 Peon

    Messages:
    59
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    can show me more details , can make it 100% like sendspace?
    when I go to sendspace dwonload page link, there is no any pop up ads at all,
    but when I click to download the file, it will pop up an ads in another page,
     
    kk890, Mar 13, 2009 IP
  4. siothach

    siothach Active Member

    Messages:
    656
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    60
    #4
    that's simple popup from ads, not special more. you can use many special popups at here
     
    siothach, Mar 13, 2009 IP
  5. kk890

    kk890 Peon

    Messages:
    59
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    then can show me sendspace pop up ads code??
    no need any special ..thx
     
    kk890, Mar 13, 2009 IP