Hi there.
I'm looking for some help with drop-down lists.
The lists below are populated by lists.js (a script that was kindly written by a friend).
What I need to happen is that as soon as an option within one of the lists is selected, the other four become disabled.
I'm afraid I've no clue where to start (and I think I have prevailed on my friend's patience for long enough!) so here I am!
Any help would be very much appreciated.
Thomas
<html>
<head>
<script language="javascript" src="lists.js"></script>
</head>
<body width="750px" onload="fillarea();">
<div>
Newspaper<br><select id="newspaper" NAME="newspaper" style="width:350px"></select><br><br>
Magazine/Trade<br><select id="magazine" NAME="magazine" style="width:250px"></select><br><br>
Web<br><select id="web" NAME="web" style="width:250px"></select><br><br>
TV<br><select id="tv" NAME="tv" style="width:250px"></select><br><br>
Radio<br><select id="radio" NAME="radio" style="width:250px"></select>
</div>
</body>
</html>