[YUI] YUI Compressor

JavaScript/YUI 2013. 12. 6. 18:24

홈페이지 : http://yui.github.io/yuicompressor/

다운로드 : https://github.com/yui/yuicompressor/releases

예제 : http://www.samaxes.com/2009/05/combine-and-minimize-javascript-and-css-files-for-faster-loading/

posted by 뚱2

링크 : http://www.techumber.com/2013/08/javascript-object-oriented-programming-tutorial.html

posted by 뚱2

[Highlight] highlight.js

JavaScript/Highlight 2013. 11. 27. 14:14
링크 : http://highlightjs.org/


'JavaScript > Highlight' 카테고리의 다른 글

[Highlight] Document  (0) 2014.06.13
posted by 뚱2

링크 : http://baepower.wordpress.com/2012/06/26/angularjs%EB%9E%80/

posted by 뚱2

링크 : http://www.thinkster.io/pick/GtaQ0oMGIl/

posted by 뚱2

링크 : https://github.com/douglascrockford/JSON-js

posted by 뚱2

링크 : https://github.com/jrburke/requirejs/wiki/Upgrading-to-RequireJS-2.0

링크 : http://requirejs.org/


posted by 뚱2

링크 : http://blog.javarouka.me/2013/04/requirejs-javascript.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Nonblock+%28Nonblock%29

링크 : http://www.slideshare.net/hyungeunjin3/json-view-require-js

posted by 뚱2

링크 : http://gregfranko.com/blog/require-dot-js-2-dot-0-shim-configuration/

posted by 뚱2
링크 : http://formvalidator.net/index.html



posted by 뚱2

[jqGrid] Homepage and Manual

JavaScript/jqGrid 2013. 11. 12. 11:26

[CKEditor] Fileupload

JavaScript/CKEditor 2013. 10. 30. 18:27

링크 : http://docs.ckeditor.com/#!/guide/dev_file_browse_upload

링크 : http://docs.cksource.com/CKFinder_2.x/Developers_Guide/Java/CKEditor_Integration

posted by 뚱2
posted by 뚱2

링크 : http://underscorejs.org/

posted by 뚱2

[JavaScript] Date Format

JavaScript/JavaScript 2013. 10. 15. 14:15

링크 : http://blog.stevenlevithan.com/archives/date-time-format

 

posted by 뚱2

    $.fn.serializeObject = function() {
        var o = {};
        var a = this.serializeArray();

        $.each(a, function() {
            if ( o[this.name] ) {
                if ( !o[this.name].push ) {
                    o[this.name] = [o[this.name]];
                }
                o[this.name].push(this.value || '');
            } else {
                o[this.name] = this.value || '';
            }
        });
        return o;
    };

posted by 뚱2

[respond.js] respond.js

JavaScript/respondjs 2013. 8. 26. 15:07

구 버전 브라우져에서 반응형 웹 구현에 도움을 주는 스크립트

링크 : https://github.com/scottjehl/Respond

 

posted by 뚱2

html5를 지원하지 않는 브라우져에서 사용가능하게 하는 자바스크립트

 

링크 : http://code.google.com/p/html5shiv/

 

 

posted by 뚱2

링크 : http://getbootstrap.com/

 

'JavaScript > Bootstrap' 카테고리의 다른 글

[Bootstrap] bootstrap-live-customizer  (0) 2015.07.28
[Bootstrap] Bootstrap-datepicker  (0) 2014.04.24
posted by 뚱2

/*

* strTemp  : [필수] 크로스사이트 스크립팅을 검사할 문자열

* level    : [옵션] 검사레벨

*            0 (기본) -> XSS취약한 문자 제거

*            1 (선택) -> 단순한 <, > 치환

*/

function XSS_Check(strTemp, level) {     

if ( level == undefined || level == 0 ) {

strTemp = strTemp.replace(/\<|\>|\"|\'|\%|\;|\(|\)|\&|\+|\-/g,"");

}

else if (level != undefined && level == 1 ) {

strTemp = strTemp.replace(/\</g, "&lt;");

strTemp = strTemp.replace(/\>/g, "&gt;");

}

return strTemp;

}


posted by 뚱2

[Node.js] Node.js tutorial

JavaScript/NodeJS 2013. 4. 23. 12:38

링크 : http://crazia.tistory.com/955 

posted by 뚱2

링크 : http://www.datatables.net/ 

링크 : http://www.datatables.net/release-datatables/examples/basic_init/zero_config.html 

posted by 뚱2

링크 : http://asyncweb.blogspot.kr/2012/04/jquery-attr-selected-property-ie6-bug.html

링크 : http://csharperimage.jeremylikness.com/2009/05/jquery-ie6-and-could-not-set-selected.html 


posted by 뚱2

jQuery 홈페이지에서 현재 2012-12-06일 기준으로 1.6 버전까지 다운로드 할 수 있습니다.


이전버전이 필요한 분들에게 요긴할 것 같습니다.


링크 : http://www.oldapps.com/jquery.php 


posted by 뚱2

링크 : http://dean.edwards.name/packer/ 



posted by 뚱2

var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;

var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;

var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;


posted by 뚱2

링크 : http://blog.naver.com/PostView.nhn?blogId=jjoommnn&logNo=130149113595&parentCategoryNo=22&categoryNo=&viewDate=&isShowPopularPosts=true&from=search 

posted by 뚱2

링크 : http://sizzlejs.com/ 


시간 나는대로 분석해 봐야겠다.

posted by 뚱2

링크 : http://www.w3schools.com/jsref/jsref_regexp_source.asp 

Definition and Usage

The source property returns the text of the RegExp pattern.

Syntax

RegExpObject.source


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The source property is supported in all major browsers.


Example

Example

Return the text of the RegExp pattern:

<script>

var str="Visit W3Schools";
var patt1=/W3S/g;
document.write("The text of the RegExp is: " + patt1.source);

</script>

Try it yourself »

posted by 뚱2