개발/javascript Tip(33)
-
마우스 오른쪽클릭방지 해제 스크립트
마우스 오른쪽클릭방지 해제 스크립트 javascript:function r(d){d.oncontextmenu=null;d.onselectstart=null;d.ondragstart=null;d.onkeydown=null;d.onmousedown=null; d.body.oncontextmenu=null;d.body.onselectstart=null;d.body.ondragstart=null;d.body.onkeydown=null; d.body.onmousedown=null;}function s(f){if(f.frames.length!=0){for(var i=0; i
2011.12.03 -
Trim 공백제거
Trim 공백제거 String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g,""); } String.prototype.ltrim = function() { return this.replace(/^\s+/,""); } String.prototype.rtrim = function() { return this.replace(/\s+$/,""); }
2011.12.03 -
경고없이 창닫기
경고없이 창닫기 방법 2 : 프래임 속에있을때 닫는 법
2011.12.03