Java/JavaScript

우클릭, 드래그, 복사 방지 스크립트

빨강꼬마 2013. 1. 10. 15:37

document.oncontextmenu = new Function('return false');   // 우클릭방지

document.ondragstart = new Function('reutrn false');        // 드래그 방지

document.onselectstart = new Function('return false');      // 복사 방지