
The reason why I want to open up a new window instead of using the same one, is because the slideshow resets its position when you go back, and I'd rather that anyone using the slideshow doesn't have to find their way back to where they had been.
Moderator: Moderators
<a href="images/my_image.jpg" target="_blank">my_image.jpg in a new window</a>
...
<HEAD>
<script language="JavaScript">
function popup(URL) {
window.open(URL,"my_popup","width=500, height=350, scrollbars=no, menubar=no, location=no, resizable=no");
}
</script>
</HEAD>
...
<a href="javascript:popup('images/my_image.jpg')">my_image.jpg in a new window</a>
...
<!-- Other way -->
<a href="#" onclick="popup('images/my_image.jpg')">my_image.jpg in a new window</a>
...
<!-- In the parent -->
<script language="JavaScript">
function popup(URL) {
var my_popup = window.open(URL,"my_popup","width=500, height=350, scrollbars=no, menubar=no, location=no, resizable=no");
/* You access the popup with a variable */
my_popup.document.writeln("<h1>Hey, I am writing inside the popup!</h1>");
}
</script>
<!-- In the popup -->
<script language="JavaScript">
function writeOnParent() {
/* There is a variable parent you can use to call the parent window */
parent.document.writeln("<h1>Hey, I am writing in the parent window!</h1>");
}
</script>
<script type="text/javascript" language="Javascript">
<!--
myPix = new Array("1","2","3")
myURL = new Array("1","2","3")
thisPic = 0
imgCt = myPix.length - 1
function chgSlide(direction) {
if (document.images) {
thisPic = thisPic + direction
if (thisPic > imgCt) {
thisPic = 0
}
if (thisPic < 0) {
thisPic = imgCt
}
document.myPicture.src=myPix[thisPic]
}
}
function newLocation() {
document.location.href = "http://www." + myURL[thisPic]
}
//-->
</script>
</head>
<body>
<center>
<table width="400" height="240" cellspacing="0" cellpadding="0" border="0" valign="middle">
<tr height="40">
<td colspan="2">
</td>
</tr>
<tr width="100%" height="160" align="center">
<td width="50%">
<a href="javascript:newLocation()">
<img src="1" name="myPicture">
</a>
</td>
<td width="50%">
</td>
</tr>
<tr width="100%" height="40" align="center">
<td width="50%">
<h3>
<a href="javascript:chgSlide(-1)"> << This-a-way </a>
</h3>
</td>
<td width="50%">
<h3>
<a href="javascript:chgSlide(1)"> That-a-way >> </a>
</h3>
</td>
</tr>
</table>
<html>
<head>
<script type="text/javascript" language="Javascript">
<!--
/* .jpg anyone? */
myPix = new Array("1.jpg","2.jpg","3.jpg");
/* You don't need 2 arrays with the same thing */
/* myURL = new Array("1","2","3"); */
thisPic = 0;
imgCt = myPix.length - 1;
function chgSlide(direction) {
if (document.images) {
thisPic = thisPic + direction
if (thisPic > imgCt) {
thisPic = 0
}
if (thisPic < 0) {
thisPic = imgCt
}
document.myPicture.src=myPix[thisPic]
}
}
function newLocation() {
/*
* You were changing the page location, you weren't creating a popup.
document.location.href = "http://www." + myURL[thisPic];
*/
window.open(myPix[thisPic], "desu", "width=500, height=500 scrollbars=no, menubar=no, location=no, resizable=no");
}
//-->
</script>
</head>
<body>
<center>
<table width="400" height="240" cellspacing="0" cellpadding="0" border="0" valign="middle">
<tr height="40">
<td colspan="2">
</td>
</tr>
<tr width="100%" height="160" align="center">
<td width="50%">
<a href="javascript:newLocation()">
<img name="myPicture">
</a>
</td>
<td width="50%">
</td>
</tr>
<tr width="100%" height="40" align="center">
<td width="50%">
<h3>
<a href="javascript:chgSlide(-1)"> << This-a-way </a>
</h3>
</td>
<td width="50%">
<h3>
<a href="javascript:chgSlide(1)"> That-a-way >> </a>
</h3>
</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<script type="text/javascript" language="Javascript">
<!--
myPix = new Array("1.jpg","2.jpg","3.jpg");
/* Two of the same thing */
/* myURL = new Array("1","2","3"); */
thisPic = 0;
imgCt = myPix.length - 1;
function chgSlide(direction) {
if (document.images) {
thisPic = thisPic + direction
if (thisPic > imgCt) {
thisPic = 0
}
if (thisPic < 0) {
thisPic = imgCt
}
document.myPicture.src = myPix[thisPic];
document.getElementById("desu").href = myPix[thisPic];
}
}
/*
* I am commenting the function.
function newLocation() {
document.location.href = "http://www." + myURL[thisPic];
}
*/
//-->
</script>
</head>
<body>
<center>
<table width="400" height="240" cellspacing="0" cellpadding="0" border="0" valign="middle">
<tr height="40">
<td colspan="2">
</td>
</tr>
<tr width="100%" height="160" align="center">
<td width="50%">
<!--////// LOOK HERE CAREFULLY, I ADDED AN ID AND TARGET _BLANK ///// -->
<a id="desu" href="#" target="_blank">
<img name="myPicture">
</a>
</td>
<td width="50%">
</td>
</tr>
<tr width="100%" height="40" align="center">
<td width="50%">
<h3>
<a href="javascript:chgSlide(-1)"> << This-a-way </a>
</h3>
</td>
<td width="50%">
<h3>
<a href="javascript:chgSlide(1)"> That-a-way >> </a>
</h3>
</td>
</tr>
</table>
</body>
</html>
Selena Aninikkou wrote:You know that the name attribute is depricated, right? You're not supposed to use it, except on forms...
Users browsing this forum: No registered users and 4 guests