How to prevent a user from opening a menu item in a new tab or in a new window

I have a menu control on my page. I want the user to not open the menu link

in "New tab" or "Open in new window."

How can i do this?

+4
source share
2 answers

As far as I know, this is not possible. A possible solution is to disable the context menu (right-click menu):

<body oncontextmenu="return false;"> 

But this does not prevent the user from duplicating a tab or something like that and opening a new menu there.

+1
source

I think you can’t. You can solve it using extensions if it is an intranet software.

0
source

Source: https://habr.com/ru/post/1383572/


All Articles