Hallo zusammen
Ich kreiere eine Form:
Und wenn ich jetzt ein Objekt mit
kommt zb dann mal die Meldung parent.Suchbereich.SuchAuswahl.options ist Null oder kein Objekt.
Ich verzweifle und brauch dringend Hilffe. Das Projekt wird doch daran nicht scheitern oder?
Danke gruß Andreas
Ich kreiere eine Form:
Code:
<form name="Suchbereich" ID="Suchbereich" style="display:inline; ">
<td width="170px" ID="SuchenBereich" style="visibility:hidden; padding-right:30px">
<input type="text" ID="Suchtext" Name="Suchtext" onBlur="SuchInhalt()" onFocus="Aktiv()" onselectstart="return true" style="width:130px; height:25px; border-width:2; border-color:#000000; border-style:solid; color:#000000; font-size:16px" autocomplete="off" >
</td>
<td width="0" ID="SucheCaption" style="vertical-align:top; padding-top:6px; visibility:hidden">
<nobr>
Suchen in:
</nobr>
</td>
<td ID="SuchAuswahl">
<select style="width:150px;" ID="SuchAuswahl" Name="SuchAuswahl" onBlur="this.style.backgroundColor='#ffffff'" onFocus="this.style.backgroundColor='#ffffcc'" >
<option>Alle Bereiche</option>
<option>Aktueller Bereich</option>
<option>Aktuelle Seite</option>
</select>
</td>
</form>
Und wenn ich jetzt ein Objekt mit
Code:
document.Suchbereich.Suchtext.value="Suchtext"
parent.Suchbereich.SuchAuswahl.options[i].selected=true
kommt zb dann mal die Meldung parent.Suchbereich.SuchAuswahl.options ist Null oder kein Objekt.
Ich verzweifle und brauch dringend Hilffe. Das Projekt wird doch daran nicht scheitern oder?
Danke gruß Andreas