how to diable inside View Source CTRL+U in title Bar

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sumitms
    New Member
    • Aug 2014
    • 2

    how to diable inside View Source CTRL+U in title Bar

    In html page how t disable right click , f12 Ctrl + u and in title bar view inside source Ctrl +u Disable
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    you can’t disable the browser menu and the short keys.

    besides that, 1) I could just disable JavaScript so any of your settings would not be applied to begin with, 2) cURL gets me the source without interference.

    why are you so keen to disable the look at the source? the standard user doesn’t know about it, and the users that know also know how to get it eventually.

    Comment

    • sumitms
      New Member
      • Aug 2014
      • 2

      #3
      just i hide the all source code inside the .html page no any option

      Comment

      • Dormilich
        Recognized Expert Expert
        • Aug 2008
        • 8694

        #4
        not possible, period.

        Comment

        • Exequiel
          Contributor
          • Jul 2012
          • 288

          #5
          You can disable the right click by this code.
          Code:
          $(document).bind('contextmenu', function() {
          	return false;
          });
          but i don't know how to disable the others. :D

          Comment

          Working...