So, I have a div which when it is left-clicked, it brings up a popup.
However, I want to have a link to the div, so when users right-click then there is an option for "href" and can click "Open link in new tab".
Here is what I mean:
<div class="show_popup">
Shows popup for `example.com/hi`
</div>
So, is there a way to add "href" which does not do any "left-click" functions (ie. does not redirect the user to another page), but when the user right clicks on it, there is an option to "open link in new tab".
I hope it makes sense.
Thanks!