Results 1 to 4 of 4

Thread: Disable F11 key in Internet Explorer 7

  1. #1
    Join Date
    Feb 2009
    Posts
    51

    Disable F11 key in Internet Explorer 7

    Hi,
    Can anyone tell me how to disable F11 key in Internet Explorer. Well I am programmer. I had assigned some task to the key at the same time I browse Internet. As I hit the key at some interval the Internet Explores switches to full screen mode hiding the task bar and address bar. It is quiet inconvenient. So, what are the ways to disable the key. Is there also a way to disable it by java.

  2. #2
    Join Date
    Apr 2008
    Posts
    2,276

    Re: Disable F11 key in Internet Explorer 7

    It is annoying service for those who hits the function key regularly. I am listing a simple way to get rid of these key. Even in future if you decided you can restore the old settings back. By group policy editor you can make the key disable. Follow the below instructions.
    • Go to Start Menu > Run > In the box type mmc
    • Go to Admin Templates > Windows Components > Internet Explorer
    • In the Browser Menu under View select Disable full screen menu option.

  3. #3
    Join Date
    May 2008
    Posts
    2,792

    Re: Disable F11 key in Internet Explorer 7

    F11 key can be disabled by making some changes in the Windows Registry. Just by changing the value the F11 key function will not work in Internet Explorer. Always take a back of windows registry file in case of any issue with the Operation system. So that you can restore you old setting back. Follow the below steps :
    1. Go to Start Menu > Run
    2. In the Run window type regedit and press OK
    3. In the registry editor window Navigate to the below path :
    4. HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main
    5. In the Main window on the right hand side look for full screen.
    6. Change the Value to no
    7. Close the registry editor and restart your system.

  4. #4
    Join Date
    Apr 2008
    Posts
    2,572

    Re: Disable F11 key in Internet Explorer 7

    I am listing you a sample of java script which can block your F11 key in the internet browser. You will need to add the below command line or you can refer for practice also. This scripts disables the F11 key and your browser will not go in full screen mode.

    Code:
    function onKeyDown() {
    if ( (event.altKey) || ((event.keyCode == 8) &&
    (event.srcElement.type != "text" &&
    event.srcElement.type != "textarea" &&
    event.srcElement.type != "password")) ||
    ((event.ctrlKey) && ((event.keyCode == 82)) ) ||
    (event.keyCode == 122) ) {
    event.keyCode = 0;
    event.returnValue = false;
    }
    }
    </script>
    <body onkeydown=onKeyDown()>
    Try the above script. Best of luck.

Similar Threads

  1. How to Disable F1 Help key in Internet Explorer
    By Dalapathi in forum Technology & Internet
    Replies: 4
    Last Post: 14-02-2011, 10:40 AM
  2. How to disable internet options in Internet Explorer
    By Kamran in forum Technology & Internet
    Replies: 3
    Last Post: 30-06-2009, 12:50 PM
  3. How to Disable Cookies in Internet Explorer ?
    By Seraphim in forum Technology & Internet
    Replies: 2
    Last Post: 08-04-2009, 11:09 PM
  4. Can We Disable Internet Explorer 8 In Windows 7 ?
    By Stefan09 in forum Windows Software
    Replies: 3
    Last Post: 14-03-2009, 08:36 PM
  5. disable internet explorer on remote pc
    By godwinson in forum Windows Software
    Replies: 5
    Last Post: 28-08-2008, 06:22 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,241,503.70045 seconds with 17 queries