javascript - How to disable highlighting on Hover? -
i have disable highlighting effect of <select>
of html. when pull down items in drop down list , move mouse on items blue color strip moves mouse. have disable effect.
here sample code
<select> <option>april</option> <option>may</option> <option>june</option> </select>
here demo http://jsfiddle.net/jams/5zc3m/
css or javascript solution welcome.
it's highlighted browser because it's active. believe way disable literally disable select box
<select disabled="disabled">
that remove functionality.
Comments
Post a Comment