hi pals,
i want to hide one select box to the web page background color..
i can set the backcolor color for select but it cant hide the dropdown triangle at the end. need help. thanks
my code is
<script language="javascript">
function Turnover(sel){
sel.style.backgroundColor=sel.options[sel.selectedIndex].value=='yes'?'green':''
}
</script>
<select onchange="Turnover(this)">
<option value="yes">yes</option>
<option value="no">no</option>
</select>