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

Popular posts from this blog

sql server - NHibernate incorrectly creating ManyToMany table - Cannot define PRIMARY KEY constraint on nullable column error -

All overlapping substrings matching a java regex -

c++ - Using OpenSSL in a multi-threaded application -