Hallo,
Wo ist der Bezug zu http?
sorry ich meinte HTML, bin kein insider :-)
Was hast Du bisher unternommen (Code)?
zum Beispiel einige Teile aus dem Code:
<from>
<select id="auswahl1" name="auswahl1" onchange="a1()">
<option value="0">--- Bitte wählen ---</option>
<option value="1">Produkt1</option>
<option value="2">Produkt2</option>
<option value="3">Produkt3</option>
</select>
<SCRIPT type="text/javascript" language="JavaScript">
function a1()
{
if (document.getElementById("auswahl1").value=="1")
{
document.write("Modell:");
document.write("<select name='Modell1'>");
document.write("<option selected value='100'>--- Bitte wählen ---/option>");
document.write("<option value='101'>Modell1</option>");
document.write("<option value='102'>Modell2</option>");
document.write("</select>");
}
if (document.getElementById("auswahl1").value=="1")
{
document.write("Modell:");
document.write("<select name='Modell1'>");
document.write("<option selected value='100'>--- Bitte wählen ---/option>");
document.write("<option value='101'>Modell1</option>");
document.write("<option value='102'>Modell2</option>");
document.write("</select>");
}
}
</script>
</form>
und immer weiter so.
Mein Problem ist, dass document.write es in ein neues Fenster lädt.
Mit .style.display und .style.visibility hat mir auch nicht geholfen da ich will, dass die werte später in ein Formular übergeben werden sollen.
Vielen Dank für Deine Hilfe.
bulldoge