Forum Moderators: open
navigation
content
footer
In the page which appears in the navigation frame I have used the Dreamweaver Jump Menu object from the Forms section on the Object pallet to create a drop down menu with a number of links to pages on it.
The code below is what I have and it works but when you select an option from the list it loads the page replacing the whole frame set instead of loading the page in the content frame. I have tried changing ('parent',this,0) to ('parent',content,0) and other variations but with no luck.
If any one has any ideas I would be most grateful.
Cheers
<form name="form1">
<select name="menu1" onChange="MM_jumpMenu('parent',this,0)">
<option selected>Quick Links</option>
<option value="ringtones.html" target="content">Ringtones</option>
<option value="logos.html">Logos</option>
<option value="pic_messages.html">Pic Messages</option>
<option value="special_offers.html">Special Offers</option>
<option value="whats_new.html">Whats New</option>
<option value="instructions.html">Instructions</option>
<option value="how_to_order.html">How to Order</option>
<option value="compatibility.html">Compatibility</option>
<option value="contact_us.html">Contact Us</option>
</select>
</form>
This way DW sets the proper code for navigation and you can choose what frame the jumpmenu opens the content in.
If you don't edit from the frameset, you can not change the location for your content to open in.
Its that simple.
dhdweb