Automatic behaviors in FP

  • Thread starter Husker_Alumna95
  • Start date
H

Husker_Alumna95

Is there a way that you can trigger a hyperlink to happen as soon as the web
page is loaded?

I'm just learning the HTML code so I'm kinda lost on this one.
 
M

MD Websunlimited

Hi Husker,

Use the onload event of the body tag.

<body onload=" your code goes here " >
 
S

Steve Easton

Use a meta refresh tag in the head section of the page.

<META HTTP-EQUIV=Refresh CONTENT="10; URL=nextpage.htm">

will open nextpage.htm 10 seconds after the initial page is opened. Change 10 to a lower number to
make it open faster.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
Top