I would like to know if there is an event in Firefox that opens an html select.
In Chrome 'mousedown' works, but in Firefox it doesn't.
My code is something like
event = new MouseEvent('mousedown',{
'view': window
});
$(selector).dispatchEvent(event);
There are many similar questions but I wasn't able to come up with a definitive answer...