|
|
|
.. Java Script
|
|
<script language="JavaScript" type="text/javascript">
<!--
function go(){
if (document.selecterb.select1b.options[document.selecterb.select1b.selectedIndex].value != "none") {
location = document.selecterb.select1b.options[document.selecterb.select1b.selectedIndex].value
}
}
//-->
</script>
<script language="JavaScript" type="text/javascript">
<!--
document.write('<form name="selecterb"><select name="select1b">');
document.write('<option value=none>Vyberte z menu');
document.write('<option value=none>--------------------');
document.write('<option value="http://www.seznam.cz">Seznam.cz');
document.write('<option value="http://www.centrum.cz">Centrum.cz');
document.write('<option value="http://www.atlas.cz">Atlas.cz');
document.write('<option value="http://www.google.com">Google.com');
document.write('</select>');
document.write('<input type="button" value=" Ok " onclick="go()">');
document.write('</form>');
-->
</script>
» Jako odkaz můžete použít lokální adresu (např.: ..value="kontakt.htm"..)
» Řádků si můžete vložit kolik chcete a to i prázdných (..value=none..)
Zelené hodnoty můžete bez obav měnit
|
|