How Do I Get A Pop Up Like This?

Discussion in 'HTML & Website Design' started by activebiz, Sep 21, 2008.

  1. #1
    I was wondering if anyone knows how to make a pop up appear like the one in the following URL. Do not worry its just to register for a free e-book so no viruses.

    http://www.savagemarketing.com/64000/
     
    activebiz, Sep 21, 2008 IP
  2. xtremegraphix

    xtremegraphix Peon

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Thats a Java script

    <script type="text/javascript" language="JavaScript">

    var top = -500;

    function AnimateFloater()
    {
    top = top + 15;

    document.getElementById('floater_container').style.top = top + 'px';

    if (top < 50)
    {
    setTimeout('AnimateFloater()',50);
    }
    }

    function RemoveContent() {
    var elementStyle = document.getElementById('floater_container').style;
    elementStyle.display = "none";
    }

    function verifyRequired() {
    if (document.icpsignup["fields_fname"].value == "") {
    document.icpsignup["fields_fname"].focus();
    alert("The Name field is required.");
    return false;
    }
    if (document.icpsignup["fields_email"].value == "") {
    document.icpsignup["fields_email"].focus();
    alert("The Email field is required.");
    return false;
    }

    return true;
    }
    </script>

    Just Look for it in the view source in your browser
     
    xtremegraphix, Sep 21, 2008 IP
  3. Joseph S

    Joseph S Well-Known Member

    Messages:
    1,373
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    155
    #3
    And you are putting the text you want to float like this:
    <div id="floater_container">That`s the "pop-up" content</div>
    Code (markup):
     
    Joseph S, Sep 21, 2008 IP
  4. xtremegraphix

    xtremegraphix Peon

    Messages:
    13
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Forgot to add taht thanks joseph S
     
    xtremegraphix, Sep 22, 2008 IP
  5. activebiz

    activebiz Banned

    Messages:
    1,683
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I have a separate page that I want to pop up in the floater. It is an image + text + a sign up to receive newsletter form. I want it to fit in the floater.
     
    activebiz, Sep 22, 2008 IP