Der große meister des server side scriptings hat eine frage für client side scripting
wenn ich a formluar (siehe unten) hab, mit 2x radio buttons und 1x textfeld und das 1 radiokastl is standardmäßig checked is, wie mach ich es, dass dert 2 radiobutton checked wird, sobald man was ins textfeld reinschreibt?
ich hab schon mit <input type="text" onchange="document.blabla.R2.check();"> (statt check auch schon select) probiert, funzt aber nicht
<form name="blabla">
<input type="radio" value="V1" checked name="R1"></p>
<input type="radio" name="R2" value="V2"><input type="text" name="T1" size="20"></p>
</form>