redirecting a site

They have: 19 posts

Joined: Mar 2000

I'm having problems with a site direct script. It works, but not the way I'd like. Here's the address:
http://members.xoom.com/songslinger/fishing.html

What's supposed to happen is the viewer is taken to the new location on a different host. But the Xoombar banner follows and haunts the new site and subsequent links. I'd like to get rid of the damn thing without having my clients go through some convoluted right-click-and-new-window shuffle.

[This message has been edited by webslinger (edited 28 June 2000).]

They have: 324 posts

Joined: Dec 1999

You can always use the META tag redirect:

code:

<meta HTTP-EQUIV="refresh" CONTENT="1;URL=Put Url Here">
[/code]


------------------
TWF Moderator 
Visit the Affiliate or Associate Programs 

They have: 19 posts

Joined: Mar 2000

Yes, thanks,I've tried that. I discovered that the script I was using was only a little gimmick to show the seconds ticking away until the site was redirected. I already had the meta tag in place. I've gotten rid of the script. The problem remains, however. I've contacted the original web host (Xoom, God help me!) and maybe something will come of that. But if anyone out there knows a simple way to keep the bar from following to the next site, please let me kmnow. Much obliged.

[This message has been edited by webslinger (edited 28 June 2000).]

They have: 62 posts

Joined: Jun 2000

webslinger: Don't know if that's possible...I'd just recommend a quick "We've Moved!" link that's set to open in a new window...

------------------
Chris Bowyer
MyCoding.com: Join our Mailing List for Launch Notification!

"I'm not an insomniac, I'm a web designer."

They have: 122 posts

Joined: Jun 1999

just use:

<script>
top.location.href="thepage.html"
</script>

to make it do it in 15 seconds, use:

<script>
setTimeout("top.location.href='thepage.html'",15000)
</script>

They have: 19 posts

Joined: Mar 2000

THANKS, EVERYBODY! I got it solved. Muchas Gracias! Once again, the forum comes through!

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.