Angel Arts Grafix
Mitglied
Hi Leute! Ich habe ein Problem mit einempulldown menü!
Ich habe ein Pulldown menü:
und der dazugehörigen go() function
Mein problem ist es das wenn ich die function go ausführe, das als frame die ganze seite verlinkt wird! Ich will das Fenster aber in einem bestimmten Frame , namens "mitte" , verlinken! Wo muss ich was ändern / dazuschreiben das als frame immer die mitte benutzt wird und nicht die ganze index.htm verlinkt wird
thx im Vorraus!
Ich habe ein Pulldown menü:
Code:
<script language="JavaScript">
<!--
document.write('<form name="selecter"><select name="select1" style="padding: 0">');
document.write('<option value="mitte" selected>Selection</option>');
document.write('<option style="background-color: #0206A6" value="dedicated.htm"> - Mega Celeron 1.7</option>');
document.write('<option style="background-color: #0206A6" value="dedicated.htm"> - Mega Celeron 2.4</option>');
document.write('<option style="background-color: #0206A6" value="dedicated.htm"> - Mega Pentium 2.4</option>');
document.write('<option style="background-color: #0206A6" value="dedicated.htm"> - Mega Pentium 2.8</option>');
document.write('<option style="background-color: #0206A6" value="dedicated.htm"> - Mega Gaming 3.0</option>');
document.write('<option style="background-color: #0206A6" value="dedicated.htm"> - Mega Dual Xeon</option>');
document.write('</form>');
document.write('</select>');
//-->
</script>
und der dazugehörigen go() function
Code:
<!-- //
function go(){
if (document.selecter.select1.options[document.selecter.select1.selectedIndex].value != "none")
{
location = document.selecter.select1.options[document.selecter.select1.selectedIndex].value
}
}
//-->
Mein problem ist es das wenn ich die function go ausführe, das als frame die ganze seite verlinkt wird! Ich will das Fenster aber in einem bestimmten Frame , namens "mitte" , verlinken! Wo muss ich was ändern / dazuschreiben das als frame immer die mitte benutzt wird und nicht die ganze index.htm verlinkt wird
thx im Vorraus!