Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do they do that? developer.sys-con.com 1

Status
Not open for further replies.

josel

Programmer
Oct 16, 2001
716
US
Howdy y'all!

I got an email from CFDJ which I'm sure most (if not all) of you received. I use hotmail. Some of you may know that hotmail opens linked pages under a frame thus messing up your work ... @#$%*

I clicked on link to check the newly launched developer.sys-con.com and noticed that their page got rid of that annoying frame.

So, does anyone know how to do that?

I sure would like to know. I am just wrapping up a couple of routines to send email to a list of subscribed members. In the email, there will be links to take them where no browser has even gone before (sorry, got carried away) and would like to account for this 'THING' and get rid of it.

Thank you all in advance!

Jose Lerebours KNOWLEDGE: Something you can give away enlessly and gain more of it in the process! - Jose Lerebours
 
from your description (i don't get cfdj) it's the "pop out of frames" javascript -- very common

here's the version from
<script>
<!-- Begin
if (window != top) top.location.href = location.href;
// End -->
</script>


rudy
 
Rudy,

Most excellent! where do I place this? :)

Does this belong in association to <body> tag or on the header?

Thanks;


Jose Lerebours
KNOWLEDGE: Something you can give away enlessly and gain more of it in the process! - Jose Lerebours
 
if you're talking about web pages, scripts may be placed in the body, but really should go in the head

if you're talking about html email, sorry, i have no idea, i don't do html email


rudy
 
Rudy,

Thank you so very much - I placed it within <head> and it works like a charm ...

I am referring to my website ... I send the email with link and I wanted to make sure my page shows as it should once members clicked on provided link(s)

Regards;

Jose Lerebours KNOWLEDGE: Something you can give away enlessly and gain more of it in the process! - Jose Lerebours
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top