โค้ดสำหรับป้องกันการคลิกขวา และห้ามคลุมดำ บนเว็บไซต์ คัดลอกโค้ดไปใช้ได้เลยครับ

ภาษาอังกฤษ สอบเข้า ม.1 | คณิตศาสตร์ สอบเข้า ม.1 | วิทยาศาสตร์ สอบเข้า ม.1 | สอบ TGAT | AP | O-NET คืออะไร |

โค้ดสำหรับป้องกันการคลิกขวา และห้ามคลุมดำ บนเว็บไซต์ คัดลอกโค้ดไปใช้ได้เลยครับ

23
ก.ย.
    2021-09-23 09:04:22   
    587
      siamweb2u
โค้ดสำหรับป้องกันการคลิกขวา และห้ามคลุมดำ บนเว็บไซต์ คัดลอกโค้ดไปใช้ได้เลยครับ
วิธีวางโค้ด
ไปที่>>รูปแบบ >>HTML/จาวาสคริปส์>> วางโค้ด >>บันทึก

1.โค้ดห้ามลากดำ+ห้าม ctrl+A,C ในโค้ดเดียว
<script language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>
 

2.โค้ดห้ามคลิกขวา
**แทนสีน้ำเงินด้วยข้อความที่ต้องการให้ปรากฏ Do not click right..!!
<script language=JavaScript>
<!--
var message="Do not click right..!!";
///////////////////////////////////
function clickIE() {if (document.all) {alert(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {alert(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// --> 
</script>


3.โค้ดห้ามคลิกขวา
ไม่ให้ปรากฏข้อความใดๆ
 
<script language=JavaScript>
<!--
///////////////////////////////////
function clickIE() {if (document.all) {alert(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {alert(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
document.oncontextmenu=new Function("return false")
// --> 
</script>

บทความล่าสุด

17
ก.ค.
วิธีการทำให้ YouTube เล่นอัตโนมัติ
วิธีการทำให้ You Tube เล่นอัตโนมัติ   วิธีการทำให้ You Tube เล่นอัตโนมัติ ..
                                                                                                                                                                  
28
ต.ค.
วิธีแก้ดู คลิปวีดีโอ Facebook เป็นเส้นๆ
วิธีแก้ดู คลิปวีดีโอ Facebook เป็นเส้นๆ ลองปิดตัวเร่งกราฟฟิกส์ https://pureinfotech.com/disable-har..
                                                                                                                                                                  
14
ต.ค.
คู่มือการสมัคร และติดตั้ง Google Analytics
1. ไปยังเว็บไซต์ http://www.google.com/analytics เพื่อสมัครใช้งาน Google Analyti..
                                                                                                                                                                  
9
ต.ค.
วิธีนำ Google Map มาติดตั้งบนบนเว็บไซต์
มาเริ่มขั้นตอนการติดตั้ง Google Map บนบนเว็บไซต์ไปพร้อมๆกันเลย โดยในที่นี้จะเริ่มด้วยการใช้ Google M..
                                                                                                                                                                  
7
ต.ค.
การแปลง 3D และแอนิเมชั่น ภาพหมุน Logo หมุนรอบตัวเอง
@-webkit-keyframes spinner { from { -webkit-transform: rotateY(0deg); } to { -w..