<script> jQuery(document).ready(function(e) { $(document).bind("contextmenu",function(e){ return false; ...
Wednesday, 14 January 2015
How to disable the F12 key
satish mallick
January 14, 2015
<script> document.onkeydown = function(e) { // keycode for F5 function if (e.keyCode === 116) { return false; ...
Embedding extra styles with noscript(Javascript)
satish mallick
January 14, 2015
<script> document.write("<link href='css/css.css' rel='styleSheet' type='text/css' />"); --...