I need a popup javascript ...

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Naughty
    Confirmed User
    • Jul 2001
    • 6487

    #1

    I need a popup javascript ...

    Let's say I have 5 links, I want to be able to open each link in a new window, but that window needs to be a fixed width.
    Just like the average popup window, but it must be controlled by any number of links, not just 1 link per javascript.
    Kinda like Javascript:openWin(thewindowineed.html);


    I've seen javascripts like this for pictures, but does anybody know of where I can find one for pages?

    I have searched on scriptsearch.com and javascripts.com (and a few others), but no luck so far.
    seks.ai for sale - ping me
  • X37375787

    #2
    http://www.clickforcontent.com/popupwindowgenerator.htm

    This might help you.

    Comment

    • flashfreak
      Confirmed User
      • Jun 2002
      • 4396

      #3
      Code:
      function winopen(title,inst)
      {
      window.open(title,inst,'width=500,height=300,resizable=no,toolbar=no,scrollbars=no,status=no,menubar=no');
      }
      
      you can cal it like this: 
      onclick="winopen('window1.html','w1');"
      SEO Mogul | ICQ: 163671223

      Comment

      • Naughty
        Confirmed User
        • Jul 2001
        • 6487

        #4
        Thanks.

        FlashFreak, that looks like what I was looking for.
        seks.ai for sale - ping me

        Comment

        Working...