- February 8, 2017
- Posted by: user
- Category: Uncategorized
No Comments
Hello All,
Disabling right click has been really very easy using Jquery. All you need to add below code in your page inside head section.
[code:js]
<script type="text/javascript" language="javascript">
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
});
});
</script>
[/code]