Results 1 to 3 of 3

Thread: Drop Down + Pop-up?

  1. #1
    Join Date
    Jul 2005
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Drop Down + Pop-up?

    I'm trying to make a drop down list but with the links popping up in a new window. I used this site: http://www.htmlcodetutorial.com/link...msupp_114.html
    to do the list, which is working fine. Now I want the page that's opening to be opened in a new window and a fixed size.
    Thanks for the help!!

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Switch:
    Code:
       myWin.location = myVal;
    To:
    Code:
     window.open (myVal,
    "mywindow","menubar=1,resizable=1,width=350,height=250");
    Jeremy | jfein.net

  3. #3
    Join Date
    Sep 2007
    Location
    The Netherlands
    Posts
    1,881
    Thanks
    49
    Thanked 266 Times in 258 Posts
    Blog Entries
    56

    Default

    Quote Originally Posted by grintsgirl View Post
    I'm trying to make a drop down list but with the links popping up in a new window.
    See this for more possibilities.
    ---------
    Arie Molendijk.
    Last edited by molendijk; 04-06-2008 at 01:57 PM. Reason: Correction

Bookmarks

Posting Permissions

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