Need suggest to make a popup window

by mcfur
2 replies
I want to make a popup window on my blog to put an opt in form, anyone can give me some suggestion what tool or script can I use to make it? a free tool, professional look, and easy to use of course
#make #popup #professional #suggest #window
  • Profile picture of the author webpro4hire
    Take a look at a Jquery plugin called FancyBox. You can put images, videos, html iframes, pretty much anything in those. Fancy Box is a layover, not a popup, hence not likely to be blocked by popup blockers.

    Fancybox - Fancy lightbox alternative

    WP4H
    {{ DiscussionBoard.errors[3249893].message }}
  • Profile picture of the author joe12joe
    You would need to use the following script in the head tags

    Code:
    <script language="javascript">
    <!-- begin
    
    function popup(Site)
    {
    window.open(Site,'PopupName','toolbar=no,statusbar=no,
    location=no,scrollbars=yes,resizable=yes,width=275,height=200')
    }
    
    // end -->
    </script>
    And add the following code into your body tag:

    Code:
    onLoad="popup('URL/to/popup.html')"
    The body tag must be like this:

    Code:
    <BODY bgcolor="#ffffff" text="#000000"
    onLoad="popup('http://NowSell.com/popup.html')">
    {{ DiscussionBoard.errors[3251118].message }}

Trending Topics