Hello,
Has CS6 removed the Insert>Forms>JumpMenu ?
Thanks,
Shane
I'm pretty sure that was removed from the Cloud version in the most recent update, along with a lot of other Insert menu items.
http://helpx.adobe.com/content/help/en/dreamweaver/using/changes-inser t-options-creative-cloud.html
Ahh, I see. Thank you for the info. Ok so now that the "Jump Menu" feature has been removed what is the altrernative for inserting a functioning menu? I see Insert>Form>Select, which one can easily build a menu however when inserting the "old" Jump Menu, DW would automatically insert the necessary javascript for it to function.
I made a quick menu using the Form>Insert>Select, however it's just a dead menu with no functionality. How do I have it add the JavaScript? Or is there a newer HTML5 alternative that is better to use?
Thanks,
Shane
Here's a script I found. Just add it to your Snippets menu once you've changed out the links in the values...
<script language="javascript" type="text/javascript" >
function jumpto(x){
if (document.form1.jumpmenu.value != "null") {
document.location.href = x
}
}
</script>
<form name="form1">
<select name="jumpmenu" onChange="jumpto(document.form1.jumpmenu.options[document.form1.jumpm enu.options.selectedIndex].value)">
<option>Jump to...</option>
<option value=http://yourlink.com>Home</option>
<option value=http://yourlink.com>Link2</option>
<option value=http://yourlink.com>Link3</option>
<option value=http://yourlink.com>Link4</option>
<option value=http://yourlink.com>Link5</option>
<option value=http://yourlink.com>Link6</option>
<option value=http://yourlink.com>Link7</option>
</select>
</form>
North America
Europe, Middle East and Africa
Asia Pacific