• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

OT: HTML question

Works perfect.

One other question, how do I do it so that the page opens automatically without having to click on the link?


I really appreciate the help!
 
Are you trying to redirect to a new page in a new window while keeping the older one?

I know how to redirect in the same page, but don't know about making it open a new window, not sure if HTML will do the job. Perhaps some javascript?

To redirect automatically in the same window, use the following:

<meta http-equiv=&quot;refresh&quot; content=&quot;8; url=http://www.anandtech.com&quot;>

The number after content is the number of seconds before it redirects... stick this line in the header. (<head> here </head>
 
dcdomain, That java worked except it stayed in the frame. Is there a command to get out of the frame?



 
Sorry about my wording, but the meta code that I gave you is HTML, and it'll only redirect you in the same frame. To do otherwise, I think you would need to use some javascript, try searching some websites, I'm sure there's one available. May I ask what exactly you are trying to do?

If you are trying to get rid of a banner from a webhost or what not let me know if it's NBCI, there's a work around.
 
You know what, I just got rid of the frames on that page it it seems to work. Thanks for your help.

If you want to check it out go here

Thanks a lot for the help.
 
OH... right right... then you could have created the link, instead of using &quot;_blank&quot;, you could use &quot;_top&quot;, which essentially opens the link to fill the entire page, not just within that frame.
 
if you want a frame to automatically open another page in a new window simply put this into the body tag of the frame

onload=&quot;window.open('http://www.anandtech.com')&quot;

 
Back
Top