TarekRaafat / autoComplete.js

Simple autocomplete pure vanilla Javascript library.
https://tarekraafat.github.io/autoComplete.js
Apache License 2.0
3.93k stars 236 forks source link

how to trigger a selection event with right mouse #416

Open finanalyst opened 11 months ago

finanalyst commented 11 months ago

I have a list of choices, I can select one with mouse click or Enter and the URL associated with item opens.

But now I want to have extra behaviour: mouse-right-click opens selected item in a new tab, while keeping Enter and mouse click open in current tab.

How to trap RightMouseButton (in JS event 'auxclick').

I have tried adding auxclick: (event) => { ... } in events { input: