|
ขั้นตอนการวางโค้ด
- คลิ๊ก
ปุ่มแก้ไขหน้านี้ ที่หน้าที่ต้องการวางโค้ด
- ที่หน้าแก้ไข (editor) คลิ๊กเมาส์เลือกตำแหน่งที่ต้องการวางโค้ด
- คลิ๊กปุ่ม
เพิ่ม/แก้ไข script แล้ว copy โค้ดข้างล่างนี้ ใส่ที่ช่องวาง script
- คลิ๊กปุ่ม ตกลง
- คลิ๊กปุ่ม บันทุกข้อมูล
Copy โค้ดนี้ไปวางที่เว็บไซต์ของท่านตามขั้นตอนข้างต้น
<SCRIPT language=JavaScript> <!--
var message="ห้าม copy น่ะ";
/////////////////////////////////// function clickIE4(){ if (event.button==2){ alert(message); return false; } }
function clickNS4(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=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; }
document.oncontextmenu=new Function("alert(message);return false")
// --> </SCRIPT>
<SCRIPT language=JavaScript1.2> //Disable select-text script (IE4+, NS6+) 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>
|