Where can I get this script?

4 replies
Savvy and resourceful Warrior Pals,

I'm looking for a popup script that pops up on mouseover once the visitor attempts to raise the mouse to the top of the page to exit. I think it uses DHTML.

Anybody use one of these?
#script
  • Profile picture of the author WD Mino
    Hi Ron your thinking like exit pop or psychic pop they are all over just google you can find it for free I bet
    -WD
    Signature

    "As a man thinks in his heart so is he-Proverbs 23:7"

    {{ DiscussionBoard.errors[1756541].message }}
  • Profile picture of the author Mark Hess
    Ron, this may be what you're looking for: ExPop: Unblockable DHTML Exit Popups (Hover Ads)

    It doesn't actually prevent the user from pushing the back button and leaving the site though. It just displays the popup when the mouse gets close to the back button or to close the tab for your site.

    If you are looking for a "true" exit popup... I just placed one on a demo site for a new project I'm working on: Sales Page Demo

    Copy and Paste the code below and place it between your </body> and </html> tag in the footer section of your page.

    Where it says "stay on page URL" enter the url you wish to redirect the user to if they decide to stay on the page. (I entered the Warrior Forum just for fun)

    Code:
    <script type="text/javascript" language="javascript"> 
    var areYouReallySure = false;
    var internalLink = false;
    function areYouSure() {
    if (!areYouReallySure && !internalLink) {
    areYouReallySure = true;
    location.href="STAY ON PAGE URL"
    
    return "*****************************************************nnWait! nnBefore 
    
    you leave , please take a look at this limited time offer. Remember, this is a 100% FREE. n
    
    nCLICK THE STAY ON THIS PAGE BUTTON BELOWn
    
    n*****************************************************";
    }
    }
    window.onbeforeunload = areYouSure;
    </script>
    Hope this helps...
    Signature
    {{ DiscussionBoard.errors[1756569].message }}

Trending Topics