Hello,
I tried unsuccessfully using previous posted thread to write a small script that will disable one the components (text field, pop-up menu). if text field ’m’ as input then pop-up menu ’d’ will be disabled and the opposite (m will be disabled if chosen d is different then value=" "
. Can someone assist me please?
What is the best beginner book in order to study JavaScript?
Thanks.
HTML:
<html>
<head>
<title>m/d</title>
</head>
<body>
man.
<input name="m" type="text" id="m">
dyn.
<select name="d" size="1" id="d">
<option value=" "></option>
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
</select>
</body>
</html>
I tried unsuccessfully using previous posted thread to write a small script that will disable one the components (text field, pop-up menu). if text field ’m’ as input then pop-up menu ’d’ will be disabled and the opposite (m will be disabled if chosen d is different then value=" "
What is the best beginner book in order to study JavaScript?
Thanks.
HTML:
<html>
<head>
<title>m/d</title>
</head>
<body>
man.
<input name="m" type="text" id="m">
dyn.
<select name="d" size="1" id="d">
<option value=" "></option>
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
</select>
</body>
</html>