Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
betpg #1
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
-
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... -
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... -
new browser window in php
How do I start a new browser window when using print in php? Jeffry Lester jeff@signalnetworking.com -
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... -
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... -
tomc-440music #2
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
-
rilkesf #3
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



Reply With Quote

