Disable F11 Key

This section contains a lot of Scripting material for your website.

Disable F11 Key

Postby MT Shahzad on March 30th, 2008, 2:48 pm

If you want to disable the F11 (Full Screen) function, then you can do this with the help of following javascript code.

Code: Select all
<script tyoe="text/javascript">
document.onkeydown = function ()
{
   if (122 == event.keyCode)
   {
      event.keyCode = 0;
      return false;
   }
}
</script>
MT Shahzad
Web/Software Developer
http://mts.sw3solutions.com
User avatar
MT Shahzad
Site Admin
 
Posts: 300
Joined: February 29th, 2008, 8:11 am
Location: Muridke, Pakistan

Return to Java Script / VB Script

Who is online

Users browsing this forum: No registered users and 0 guests

cron