Skip to main content

Posts

Showing posts from May, 2022

GTU NEW LOGO 2022 all Size

 

CE 7th SEM TT GTU

  07 2170701 Complier Design 01 Jun 2022 02:30 PM TO 05:00 PM Offline descriptive type exam as per routine practice of University 70 07 2170701 Complier Design 01 Jun 2022 02:30 PM TO 05:00 PM Offline descriptive type exam as per routine practice of University 70 07 2170709 Information and Network Security 03 Jun 2022 02:30 PM TO 05:00 PM Offline descriptive type exam as per routine practice of University 70 07 3170716 Artificial Intelligence 03 Jun 2022 02:30 PM TO 05:00 PM Offline descriptive type exam as per routine practice of University 70 07 2170709 Information and Network Security 03 Jun 2022 02:30 PM TO 05:00 PM Offline descriptive type exam as per routine practice of University 70 07 3170716 Artificial Intelligence 03 Jun 2022 02:30 PM TO 05:00 PM Offline descriptive type exam as per routine practice of University 70 07 2170710 Mobile Computing and Wireless Communication 06 Jun 2022 02:30 PM TO 05:00 PM Offline descriptive type exam as per routine practice of University 70 07

How to disable inspect function using javascript

  Introduction I wrote a script that disables practically all the ways to access Inspect Element in JavaScript. Here's what it blocks: Right Click F12 Ctrl + Shift + I Ctrl + Shift + J Ctrl + U What you need Basic JavaScript knowledge HTML editor What you do Right Click Copy the HTML below! <body oncontextmenu="return false;"> Keys Copy the JavaScript below! document.onkeydown = function(e) { if(event.keyCode == 123) { return false; } if(e.ctrlKey && e.shiftKey && e.keyCode == 'I'.charCodeAt(0)){ return false; } if(e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)){ return false; } if(e.ctrlKey && e.keyCode == 'U'.charCodeAt(0)){ return false; } }

Contact Form

Name

Email *

Message *