thanks Re: frames and cflocation

2001-09-06 Thread Seamus Campbell
Thanks gary and to everyone else that replied Seamus At 07:17 am 6/09/01 , you wrote: >Here is some javascript that will work for you > > >parent.location=index.cfm'; > > >Replace index.cfm with the file or directory you want to goto > > >Gary >cfdev.com >http://www.cfdev.com ~~

RE: frames and cflocation

2001-09-06 Thread Andrew Scott
ember 2001 2:25 AM To: CF-Talk Subject: RE: frames and cflocation I believe you can't. I've worked on an application which requires frames. And to redirecting, I had to use Javascript. <!-- top.main.location.href = "<A HREF="http://www.whateveraddress.com"

Re: frames and cflocation

2001-09-06 Thread Gary Kraeger
" <[EMAIL PROTECTED]> Sent: Wednesday, September 05, 2001 11:15 AM Subject: Re: frames and cflocation > Seamus Campbell wrote: > > I rarely use frames so know nothing about working with them. > > how do I do the equivalent of target ="main" > > with cflocati

RE: frames and cflocation

2001-09-05 Thread Thomas Chiverton
> how do I do the equivalent of target ="main" > with cflocation? With javascript. ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http:/

RE: frames and cflocation

2001-09-05 Thread Billy Ng
I believe you can't. I've worked on an application which requires frames. And to redirecting, I had to use Javascript. Billy -Original Message- From: Seamus

Re: frames and cflocation

2001-09-05 Thread Jochem van Dieten
Seamus Campbell wrote: > I rarely use frames so know nothing about working with them. > how do I do the equivalent of target ="main" > with cflocation? Not. cflocation works server side and frames are client side. You will need to write some javascript to do that for you. Jochem ~