Need suggest to make a popup window

by 2 replies
3
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
#programming #make #popup #professional #suggest #window
  • 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
  • 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')">

Next Topics on Trending Feed

  • 3

    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