I need, when I click in a multiple select list option to transform a mouse "click" in a "ctrl + click" to select multiple itens.
Now I'm doing this:
$(document).on("mousedown", '.CentroCusto_new option', function (e) {
this.selected = !this.selected;
e.preventDefault();
});
But this code didn't work on Internet Explorer because IE can't 'find' the selector 'option'.
Then I want to try to do this in another way and I need to know how to simulate ctrl + click when I click.