Re: Ctrl+B, Ctrl+I, Ctrl+U

  •  10-29-2008, 1:46 AM

    Re: Ctrl+B, Ctrl+I, Ctrl+U

    Adam:
    mattsmac,
     
    You can disable Ctrl+B using javascript.
     
    For example:
     
    function notAllowed (e)
    {
       // Disable Ctrl+B
        if ( (66== event.keyCode) && (event.ctrlKey) ) {
            alert ("Sorry, not allowed!");
            event.returnValue = false;  
        }
    }
     
    That could work.  So I would just attach that function to the onkeypress?
View Complete Thread