Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2010
    Posts
    106
    Plugin Contributions
    0

    Default create a pop up window

    I would like to create a pop up window (exactly like estimate shipping pop up) to show a size guide chart.

    Is there a function already in Admin,or would it require coding.

    Some guidance to what files need to be modified would be appreciated

  2. #2
    Join Date
    Jul 2011
    Posts
    12
    Plugin Contributions
    0

    Default Re: create a pop up window

    Let me first say that by no means am I proficient at this. But I needed the same thing. In my site you would click on a font name and a popup would appear and show you the entire alphabet in that font. I created an ez page then added the following code to it. Though there may be a better place to put the java script, I'm not aware of it yet as I'm still learning.


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <script language="JavaScript" type="text/javascript">
    <!--
    function openpicture(url)
    {
    var rateWin= window.open(url,"rates","width=650,height=300,resizable=no,scrollbars=no,top=50, left=125");
    if (rateWin.focus != null) rateWin.focus();
    }
    //-->

    </script>

    </head>


    then where you want the link to be place this

    <a href="javascript:openpicture('images/popups/arial_bold_alph.png')"><img src="images/fonts/arial_bold.png" width="150" height="44" align="top" border="0"></a>

    You would at minimum need to change the red text to fit your own needs. The first red text is the popup window where you would put your size chart. The second appears as the link you click on to get the popup.

    I'm still developing my site and this works running off a local host.

    Good Luck

 

 

Similar Threads

  1. Pop-up Window
    By UrbanFool in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 6 Mar 2008, 04:31 AM
  2. Java Pop-Up Window
    By jacque427 in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 2 Nov 2007, 12:12 AM
  3. automatic pop-up window?
    By organism in forum General Questions
    Replies: 16
    Last Post: 17 Nov 2006, 07:05 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg