|
This Drop-Down menu does not support Frames. We have one which does, in the “Frames” section of the JavaScript Workbench.
- Define a Text Box, Layout Area or Table as a “Form” on your page.
- Check the “<Object> is a form” checkbox in the Properties window
- Create a “Multibox” form element in the Form you created in Step 1.
- Right-Click (Control-Click if you’re on a Mac) on this element and select ”Object HTML” from the pop-up menu that appears
- In the “Inside Tag” field that appears, type in the following JavaScript code:
|
onchange="top.location.href = this.options[this.selectedIndex].value;"
|
|
|
type the entire line in without any carriage returns
- Now, populate your Multibox with choices, with the text you want to use to describe each menu item in the “Name” field, and the URL you’re linking to in the “Value” field (see Links for notes on creating the right link for your page)
When you Preview or Publish your site, you’ll be able to move between different pages simply by selecting the appropriate page from your drop-down menu.
|