Click to See Complete Forum and Search --> : popup question


mariamada
08-28-2003, 06:23 AM
Hallo,
I've been helped yesterday with a piece of script, that goes like this:

<script type="text/javascript">
<!--
windows = new Array();
for (i=1; i<=10; i++) {
url = ['http://www.public-property.com].join (i);
geometry = ['height=350,width=250,top=', 10*i, ',left=', 10*i].join('');
windows.push(window.open(url, '', geometry));
}
// -->
</script>

What I don't know, is how to do so, that in each popup a different link opens and not the same in all popups.

HLP!

Khalid Ali
08-28-2003, 07:50 AM
There are few things you will need to take care of.
it seems like you are pointing to an exisiting page,then have a div element in that page(very important this page or url has to be served by same werver where you app is)

then get reference to the document for that window and write a link in that document referring to the div.