RE: double post - JavaScript and windows

2001-07-30 Thread Will Swain

Thanks all who replied.

Will

-Original Message-
From: Jordan Saardchit [mailto:[EMAIL PROTECTED]]
Sent: 27 July 2001 17:07
To: CF-Talk
Subject: RE: double post - JavaScript and windows


window.opener.location.href = URL;

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 27, 2001 8:47 AM
To: CF-Talk
Subject: double post - JavaScript and windows


Hi,

Just a quick one. I have a window that is opened through clicking on a
a
href in another window. There is a link in this second window, which
when
clicked I want to open a page in the first window.

Any ideas?

Will Swain
Hot Horse Ltd
http://www.hothorse.com
e: [EMAIL PROTECTED]
t: 01273 675375
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



double post - JavaScript and windows

2001-07-27 Thread Will Swain

Hi,

Just a quick one. I have a window that is opened through clicking on a a
href in another window. There is a link in this second window, which when
clicked I want to open a page in the first window.

Any ideas?

Will Swain
Hot Horse Ltd
http://www.hothorse.com
e: [EMAIL PROTECTED]
t: 01273 675375


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: double post - JavaScript and windows

2001-07-27 Thread Steve Drucker

From the second window...

A HREF=javascript:window.opener.location.href='foobar.cfm'Click here/A

Regards,
Steve Drucker
CEO
Fig Leaf Software


-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 27, 2001 11:47 AM
To: CF-Talk
Subject: double post - JavaScript and windows


Hi,

Just a quick one. I have a window that is opened through clicking on a a
href in another window. There is a link in this second window, which when
clicked I want to open a page in the first window.

Any ideas?

Will Swain
Hot Horse Ltd
http://www.hothorse.com
e: [EMAIL PROTECTED]
t: 01273 675375
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: double post - JavaScript and windows

2001-07-27 Thread Tangorre, Mike

try looking at the parent.refresh


Michael T. Tangorre

Web Applications Developer
Office Phone: 703-558-4746
Cellular Phone: 607-426-9277
AIM: CrazyFlash4
Personal Email: [EMAIL PROTECTED]
Work Email: [EMAIL PROTECTED]
School Email: [EMAIL PROTECTED]

This Email contains MillenniuM Information
Systems, LLC Privileged Information which
is Customer or Business Sensitive.



-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 27, 2001 11:47 AM
To: CF-Talk
Subject: double post - JavaScript and windows


Hi,

Just a quick one. I have a window that is opened through clicking on a a
href in another window. There is a link in this second window, which when
clicked I want to open a page in the first window.

Any ideas?

Will Swain
Hot Horse Ltd
http://www.hothorse.com
e: [EMAIL PROTECTED]
t: 01273 675375
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: double post - JavaScript and windows

2001-07-27 Thread Don Vawter

a href=# onclick=opener.location='whatever';return false;click/a

- Original Message -
From: Will Swain [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, July 27, 2001 9:47 AM
Subject: double post - JavaScript and windows


 Hi,

 Just a quick one. I have a window that is opened through clicking on a a
 href in another window. There is a link in this second window, which when
 clicked I want to open a page in the first window.

 Any ideas?

 Will Swain
 Hot Horse Ltd
 http://www.hothorse.com
 e: [EMAIL PROTECTED]
 t: 01273 675375



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: double post - JavaScript and windows

2001-07-27 Thread eric . laney


I'm a little fuzzy on my JavaScript DOM, but I think you can use
opener.location.href = 'x';
|---+-|
|Eric A. Laney  |You now have Asian Flu.  |
|Systems Engineer   | |
|LAN Optimization Team  | |
|Voice: 813.978.4404|- Today's Fortune|
|Pager: 888.985.8519| |
|---+-|





   
  
Will Swain   
  
will@hothorsTo: CF-Talk [EMAIL PROTECTED]   
  
e.com   cc:   
  
 Subject: double post - JavaScript and 
windows   
07/27/2001 
  
11:47 AM   
  
Please 
  
respond to 
  
cf-talk
  
   
  
   
  




Hi,

Just a quick one. I have a window that is opened through clicking on a a
href in another window. There is a link in this second window, which when
clicked I want to open a page in the first window.

Any ideas?

Will Swain
Hot Horse Ltd
http://www.hothorse.com
e: [EMAIL PROTECTED]
t: 01273 675375
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: double post - JavaScript and windows

2001-07-27 Thread Jordan Saardchit

window.opener.location.href = URL;

-Original Message-
From: Will Swain [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 27, 2001 8:47 AM
To: CF-Talk
Subject: double post - JavaScript and windows


Hi,

Just a quick one. I have a window that is opened through clicking on a
a
href in another window. There is a link in this second window, which
when
clicked I want to open a page in the first window.

Any ideas?

Will Swain
Hot Horse Ltd
http://www.hothorse.com
e: [EMAIL PROTECTED]
t: 01273 675375
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists