How to enable the right-click context menu?
Posted: Thu Sep 05, 2024 12:17 pm
Getting a context-menu by right-clicking seems to be disabled in SB, how do I enable it?
- a basic to master the web -
https://forums.spiderbasic.com/
Code: Select all
Procedure DisableSiteContextMenu(state)
If state
! $('body').attr("oncontextmenu", "return false;");
Else
! $('body').attr("oncontextmenu", "");
EndIf
EndProcedure