Disable Right Mouse Click HTML Code with Javascript
➤ Javascript
<!-- Ref: Disable right mouse click html code -->
<script type='text/javascript' src='http://code.jquery.com/jquery-1.4.4.min.js'></script>
<script>
<!-- Function: Disable right mouse click html code -->
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
});
});
</script>
➤ HTML Coding
<html>
<head>
<!-- Ref: Disable right mouse click html code -->
<script type='text/javascript' src='http://code.jquery.com/jquery-1.4.4.min.js'></script>
<script>
<!-- Function: Disable right mouse click html code -->
$(function() {
$(this).bind("contextmenu", function(e) {
e.preventDefault();
});
});
</script>
<body>
</body>
</html>
ความคิดเห็น
แสดงความคิดเห็น