Aidan
06-14-2003, 08:38 PM
Is it possible to create a scroll down menu with pop up links?
(ie: you scroll down you select your destination, click go and a pop up window comes up)
Is this possible? If so does anyone know the script for it?
The drop down menus?
You combine the popup code (http://www.lissaexplains.com/java4.shtml#window) with the drop down (http://www.lissaexplains.com/fun.shtml#drop) code, and end up with something like this:
<script language="javascript">
//<!--
function popup()
{ window.open ("YourURLgoesHere.html", "popup", "width=400, height=400, location=0, menubar=0, resizable=0, scrollbars=0, status=0, titlebar=1, toolbar=0") }
-->
</script>
<form>
<select name=lissamenu3 size="1"
onchange="location.href=(form.lissamenu3.options[form.lissamenu3.selectedIndex].value)">
<option value="0">Choose One</option>
<option value="0"></option>
<option value="javascript:popup()">Home</option>
</select>
</form>