How to disable the right click for a Kiosk website

March 5, 2015   /   by Marco  / Categories :  Google, Technology
Disable Right Click Context Menu

In the past several post you may have noticed that I’ve been writing quite a bit about Chrome and Kiosk. There is a reason for this as I’ve been involved in setting up a Kiosk for a project. Now in this post I’m just going to write down how I disabled the right click (context menu) for a Kiosk website. I have discovered that disabling the Press and Hold setting in Windows did not actually disable this in Chrome. See below image as to what I’m refeering to:

Windows Press and Hold

So what I had to do was to include some code in the website page (as is what is being displayed on the Kiosk).

The code that I used is:

<script>
window.oncontextmenu = function() { 
return false; 
};
</script>

This disables the content menu function on that particular site but note that it’s only for this web page. If someone was to visit another web page the content menu will be displayed.

Here’s an example code that displays a coming soon image on the web page.

 

<html>
<script>
window.oncontextmenu = function() { 
return false; 
};
</script>
<body bgcolor="#d2232a">
<img src="coming_soon.png" width="1900" height="1060">
</body>
</html>

In the above example, the webpage just displays a coming soon image. The script section disables the context menu. I had to change the body colour to red because the image was in red and didn’t want to show any white around it. The pixel size of the actual image was 1920×1080 however when the image was loaded it displayed the scroll bars so to fix this issue I set the width and height to 1900×1060 which fixed the problem.

HELP
Did this article help? I believe there are better way to do this, if so please let me know.
DO YOU LIKE WHAT YOU'VE READ?
Join our subscription list and receive our content right in your mailbox. If you like to receive some Great deals our Freebies then subscribe now!

Our Sponsors

  • Follow us:

OTHER ARTICLES YOU MAY LIKE


USING THIS AI TOO BOOST YOUR SOCIAL MEDIA GAME

USING THIS AI TOO BOOST YOUR SOCIAL MEDIA GAME

A strong social media presence is essential for individuals and businesses alike. With the ever-growing number of users on various platforms, it can be daunting to stand out and create engaging content that captivates your audience. That’s where Marky comes in – a revolutionary tool that harnesses the power of artificial intelligence to help you […]

read more
HOW TO USE KATALIST AI TO CREATE AWESOME STORYBOARDS

HOW TO USE KATALIST AI TO CREATE AWESOME STORYBOARDS

Creating a compelling and visually appealing storyboard is crucial for any creative project, whether it’s a film, television show, or advertisement. However, the traditional process of storyboarding can be time-consuming and labor-intensive. That’s where Katalist AI comes in. This innovative tool combines the power of artificial intelligence with the creativity of human input to revolutionize […]

read more

Like our Page