Pop Up window Browser problem

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Pop Up window Browser problem

    Does anyone know the code to do this: I have a row of thumbnail images, when
    clicked on one, a pop up window opens, and the larger image pops up. I want to
    be able to make all the images open in that same pop up browser window, no
    matter what thumbnail is clicked on....avoiding tons of pop up windows opening
    up and having to be closed individually.. Please help!!!

    betpg Guest

  2. Similar Questions and Discussions

    1. Open Browser Window Link Problem
      Hi All, I am creating a page with a table on. In the table are certain cells that hold information that I want users to be able to click on for...
    2. open browser window javascript problem on dreamweaver2004 mx
      hi folks, i've linked a thumbnail to open a new browser window to show a larger image of the thumbnail. i've taken all the display options off...
    3. new browser window in php
      How do I start a new browser window when using print in php? Jeffry Lester jeff@signalnetworking.com
    4. Modifying "Open Browser Window" behavior to launch a maximized browser
      I want to launch a web application in a fullscreen browser window with nothing but the title bar and the accompanying window borders (I do not want...
    5. Browser Window Problem
      Hi, When I use "New Browser Window" in DreamweaverMX and then test it in IE6, the previous window scrolls up to the top of the page. In other...
  3. #2

    Default Re: Pop Up window Browser problem

    a quick thought would be to add a next and back link. you might also want to
    use a gallery effect which will allow the users to scroll through the images at
    there own pace. The 3rd idea that comes to mind would be to insert a simple
    script that would automatically change the display when the image is opened.

    Tom
    440MUSIC.COM IM Radio
    Beyond The Reach Of Satellite

    tomc-440music Guest

  4. #3

    Default Re: Pop Up window Browser problem

    Try this:

    Javascript -------------------------------------------------------

    function popup() {
    newWin = window.open('','popWin','');
    if(window.focus) { newWin.focus() }
    }


    HTML -------------------------------------------------------

    <a href="folder/image1.jpg" onclick="popup();" target="popWin">link1</a>
    <a href="folder/image2.jpg" onclick="popup();" target="popWin">link2</a>
    ..etc



    rilkesf Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139