While you are editing an HTML page in either Design View or HTML View, the Document Outline window displays a nested, hierarchical view of the elements and scripts on your page. You can scroll through the outline, collapse and expand entries, and double-click items to navigate quickly to their location in your document.
Note To open the Document Outline window, select Other Windows from the View menu and choose Document Outline. Click the plus (+) sign next to a node to list all the items within the node. A minus (-) indicates that a node is already fully expanded. Click the minus (-) sign to collapse the node.
To open the Document Outline window in HTML Outline view
The Document Outline window opens in HTML Outline view. The <BODY>
outline is available.
<BODY>
outline to display all the elements on your HTML page.To select an element in Design view
<BODY>
outline.
In the HTML Designer, that element is highlighted in Design view.
To jump to the markup for an element in HTML view
<BODY>
outline.
In the HTML Designer, the insertion point in HTML view jumps to the markup for that element.
To open the Document Outline window in Script Outline view.
The Document Outline window opens in Script Outline view. The available outlines displayed include Client Objects and Events and Client Scripts.
To jump to an event handler call in the <BODY> of your page
object.event
item listed.
In HTML view of the HTML Designer, the insertion point jumps to the markup for the element named, at the event handler call for this event.
To jump to an existing handler function in a <SCRIPT>
Scripts included in the Client Scripts outline are named for their scripting language.
In HTML view of the HTML Designer, the insertion point jumps to that function.
To insert a new blank handler function into a <SCRIPT>
Events for which you already have a handler function display in bold type.
A new blank function that will handle the event is inserted.
Note This new handler function is added to a script in the <HEAD>
of your page whose ID
property includes "clientEventHandlers."
<SCRIPT ID=clientEventHandlersJS language=javascript>
If such a script does not already exist, one will be created.