Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function ckTextBox(s) {
if (s != '' && s != null) document.getElementById('dropdown').disabled=false;
}
<textarea name="textarea" onchange="ckTextBox(this.value);"></textarea>
<td>
<select name="Name-opt" [b][COLOR=#ff0000]disabled[/color][/bold] >
<option value="=" selected>Exact Match</option>
<option value="like">Like</option>
</select>
</td>
<td>
<select name="Name-opt" [b]id="dropdown" [/b] disabled >
<option value="=" selected>Exact Match</option>
<option value="like">Like</option>
</select>
</td>
<script type="text/javascript">
function ckTextBox(s) {
if (s != '' && s != null) document.getElementById('dropdown').disabled=false;
}
</script>