728x90 Script13 script array clone script array clone Array.prototype.clone = function() { return this.slice(0); }; 2015. 12. 11. 문자, 숫자 정렬 2015. 12. 11. 도메인 정보 var targetDomain = window.location.href.match(/:\/\/(.[^/]+)/)[1]; console.log("targetDomain : "+targetDomain); console.log("location.protocol : "+location.protocol ); console.log("location.host : "+location.host ); console.log("location.pathname : "+location.pathname ); console.log("location.search : "+location.search ); 2015. 12. 9. textarea 특정 위치에 원하는값 넣기 function jf_htmlElementAdd(type){ //$("#html").focus(); set_tag_support($('#html'), '이거추가함!!'); } function set_tag_support(obj, prefix, postfix) { if(postfix == null){ postfix = ""; } if (document.getSelection) ts = document.getSelection(); else if (document.selection) ts = document.selection.createRange().text; else if (window.getSelection) ts = window.getSelection(); if (ts != ""){ //IE docume.. 2015. 11. 16. 이전 1 2 3 4 다음 728x90