Hi,
sry das ich schon wieder poste, aber ich habe folgendes Problem:
Ich möchte, das wenn eine Auswahl im <select>-field getroffen wird, ein Textfeld erscheint.
Mit onFocus und onBlur hat's überhaupt nicht hingehaun,
mein neuer Versuch sieht so aus:
Need Help
sry das ich schon wieder poste, aber ich habe folgendes Problem:
Ich möchte, das wenn eine Auswahl im <select>-field getroffen wird, ein Textfeld erscheint.
Mit onFocus und onBlur hat's überhaupt nicht hingehaun,
mein neuer Versuch sieht so aus:
PHP:
function show()
{
x = 1;
if (x == 1)
{
document.getElementById("show").stlye.visibility = "visible";
x = 0;
return true;
}
else if (x == 0)
{
document.getElementById("show").style.visibility = "collapse";
x = 1;
return true;
}
}
HTML:
<option onClick="show();">Sonstiges</option>
...
<input type="text" name="sonstiges" style="visibility:collapse" id="show" />
Need Help