Disable Right Click by User on Page using Jquery
Just Place below code inside your <head> tag and see result ::
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js">
</script>
<script type="text/javascript">
$(document).ready(function () {
$(document).bind("contextmenu", function (e) {
return false;
});
});
</script>
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js">
</script>
<script type="text/javascript">
$(document).ready(function () {
$(document).bind("contextmenu", function (e) {
return false;
});
});
</script>
Comments
Post a Comment