Thread: How to auto jump?
Results 1 to 3 of 3
Related
-
Pull down (jump) menu width/display issue (revisited) Forum: CSS Forum
Replies: 0 -
Auto-Redirect Forum: HTML Forum
Replies: 1 -
Jump Menu covers drop down menu Forum: HTML Forum
Replies: 1 -
Need help getting my page to automatically jump down to the previously viewed spot... Forum: Javascript Forum
Replies: 1 -
Pull down (jump) menu width/display issue.. Forum: CSS Forum
Replies: 3
-
02-25-2001, 12:36 PM #1
How to auto jump?
How can I auto jump to a well known page (in the same browser)when reaching my home page?
[This message has been edited by xav (edited 02-25-2001).]
-
02-25-2001, 12:40 PM #2
hey xav, welcome to the forums. Could you explain it a little more.
thanks
Dave
-
02-26-2001, 02:08 AM #3
two ways:
// meta tags (put between your head tags)
<META HTTP-EQUIV="refresh" CONTENT="10; url=http://www.somesite.com">
//javascript
<body onLoad="window.location='http://www.somesite.com';">