I understand this is an old question, but I recently ran into this problem and came up with the following solution using jQuery and CSS:
jQuery('select[name*="lstDestinations"] option').hover( function() { jQuery(this).addClass('highlight'); }, function() { jQuery(this).removeClass('highlight'); } );
and css:
.highlight { background-color:#333; cursor:pointer; }
Perhaps this helps someone else.
Toasterdroid Dec 24 '14 at 15:56 2014-12-24 15:56
source share