I don't think there is a way to get a mousedown or click event in an option element in IE8.
If you really want to describe the behavior, I suggest you use a different control, rather than multiple select . Changing the behavior of standard user interface components is usually not a good idea, as users are accustomed to behaving in a certain way and getting confused when they behave differently in some applications / pages than in others. If you need a list with a simple click of the mouse, step-by-step behavior, it is much better to do something your own.
You can do this with a few select , but the user interface is really ugly:
var selected = {}; $('#yourSelectBox').click(function(e) { var $this = $(this), options = this.options, option, value, n;
Live Example | Source
Again, this is a really ugly user interface.
Here is an example of a pseudo-selection: Live Example | Source
CSS
.pseudo-select { border: 1px solid black; width: 200px; } .pseudo-option { cursor: pointer; border: 1px solid #eee; } .pseudo-option.selected { background-color: #33c; color: white; }
HTML:
<div class="pseudo-select"> <div class="pseudo-option" data-value="1">One</div> <div class="pseudo-option" data-value="2">Two</div> <div class="pseudo-option" data-value="3">Three</div> <div class="pseudo-option" data-value="4">Four</div> <div class="pseudo-option" data-value="5">Five</div> <div class="pseudo-option" data-value="6">Six</div> <div class="pseudo-option" data-value="7">Seven</div> <div class="pseudo-option" data-value="8">Eight</div> <div class="pseudo-option" data-value="9">Nine</div> </div>
JavaScript using jQuery:
$(".pseudo-option").click(function() { $(this).toggleClass("selected"); });
This is what I dropped in a couple of minutes, obviously, a lot of room for improvement, but you get the point.
Note If you use something like this, you will need to detect mobile browsers and browsers using assisstive technologies (screen readers, etc.) and use regular select instead (how the browser will work better with the user in these situations .).
TJ Crowder Feb 15 '14 at 12:35 2014-02-15 12:35
source share