Trích dẫn
function noRightClick() {
if (event.button==2) {
alert(’All Aspects Are — Copyrighted!’)
}
}
document.onmousedown=noRightClick
Chống quét khối, cái này cho vào phần head
Trích dẫn
if (window!= top)
top.location.href=location.href
// –>
//Có Thể Copy Cả 2 Đoạn
function disableselect(e){
return false
}
function reEnable(){
return true
}
//Chèn Đoạn Này Nếu Chống Cho IE 4+
document.onfiltered=new Function (”return false”)
//Chèn Đoạn Này Nếu Cho NS6
if (window.sidebar){
document.onfiltered=disableselect
document.onfiltered=reEnable
}
http://tamnguyen.vn - Chúc các bạn thành công !