Automatic behaviors in FP

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
Hi Husker,

Use the onload event of the body tag.

<body onload=" your code goes here " >
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top