Instructions for iFrames
- Use [Inline Frame] to insert an iFrame.
- Double-click and give the iFrame a name, like "display".
- You can use a text-link to put a page in the iFrame.
You need
to type the URL (address).
Then type "display" in the
Target box.

- To make a [Button] work properly:
- give the button a name,
like "CNN"
- write a JavaScript function to respond to
the click
cnn.onclick
= function( )
{
display.location
= "http://www.cnn.com"
}
- You can use a ComboBox to squeeze lots of links into a small space.
Each
entry will need a Title and a URL (address), like this:

You'll
also need JavaScript to respond when an item is chosen:
lotsmorelinks.onchange
= function()
{
display.location = lotsmorelinks.value
}
Notice
that "onchange" is the correct command, rather than "onclick".