I am using the code which is written in this stackoverflow post
How to avoid the need for ctrl-click in a multi-select box using Javascript?
it is recommended also in many other articles, to do multiple selection without ctrl-click.
the code:
$('option').mousedown(function(e) {
e.preventDefault();
$(this).prop('selected', !$(this).prop('selected'));
return false;
});
The problem is that the code is not working on FireFox 31.0. you can try it using the following link
does anybody know a work around for this problem :)