Tuesday, 4 May 2021

JQUERY3

 <html>

<head>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

<!--<script type="text/javascript"  src="jquery-3.5.1.min.js"></script>-->

<script>

$(document).bind("contextmenu",function(e){

return false;

});

</script>

</head>

<body>

<p>Right click is disabled on this page.</p>

 

</body>

</html