I have to keep an application secure. I open the app in a window with the following:
function Start(page) {
OpenWin = this.open
(page, "CtrlWindow", "status=yes,toolbar=no,
menubar=no,location=no,scrollbars=yes,
resizable=yes"
;
}.
I disable the right mouse click.
Does anyone know how to disable the F11 (Toggle between Full Screen and regular view of the browser window) and Shift+F10 (Display menu) keyboard Shortcut keys?
function Start(page) {
OpenWin = this.open
(page, "CtrlWindow", "status=yes,toolbar=no,
menubar=no,location=no,scrollbars=yes,
resizable=yes"
}.
I disable the right mouse click.
Does anyone know how to disable the F11 (Toggle between Full Screen and regular view of the browser window) and Shift+F10 (Display menu) keyboard Shortcut keys?