git ignore 하기

Github 2016. 7. 25. 13:41

http://egloos.zum.com/color106/v/2860070

Posted by 이상욱1
,

http://stackoverflow.com/questions/8465821/find-all-unchecked-checkbox-in-jquery

제이쿼리unchecked 하는 방법 

$("input:checkbox:not(:checked)")


Posted by 이상욱1
,

http://stackoverflow.com/questions/19249209/why-does-a-label-inside-an-input-trigger-a-click-event

Posted by 이상욱1
,

http://ictknowledge.net/javascript-is_numeric-php-like-function/

'javascript' 카테고리의 다른 글

자바스크립트 오브젝트 해당키포함 여부  (0) 2016.11.14
nan 관련 함수  (0) 2016.06.30
자바스크립트 test() 함수  (0) 2016.06.30
자바스크립트 numberformat 상속 확장  (0) 2016.06.08
자바스크립트용 inarray  (0) 2016.06.03
Posted by 이상욱1
,

nan 관련 함수

javascript 2016. 6. 30. 14:23

    //NaN 은 not a number라는 뜻으로 

    // 숫자 형태 인지 

    console.log(isNaN('1')); // false

    console.log(isNaN(1)); // false

    console.log(isNaN('sdfdsfsdf')); // true

Posted by 이상욱1
,

https://opentutorials.org/module/532/6580


var sPattern = '<정규표현식>';

sPattern.test(mValue)

이런식으로 이용하면 true false 값으로 확인 할수있다.

'javascript' 카테고리의 다른 글

is_numberic 자바스크립트용  (0) 2016.06.30
nan 관련 함수  (0) 2016.06.30
자바스크립트 numberformat 상속 확장  (0) 2016.06.08
자바스크립트용 inarray  (0) 2016.06.03
자바스크립트 RGB to Hex  (0) 2016.05.24
Posted by 이상욱1
,

XSSCross-Site Scripting Injection 란


http://gudgud92.tistory.com/31

Posted by 이상욱1
,

contenteditable

http://webdir.tistory.com/89

http://html5ref.clearboth.org/doku.php?id=html5:attribute:contenteditable




http://iyoon.github.io/jekyll/update/2015/12/15/javscript-form.html -- iframe이나  contenteditable 전송시 



Posted by 이상욱1
,

http://programmingsummaries.tistory.com/313


이벤트가 전파되는것과 관련되있는것이다 



        //  미리보기 닫기 

                $(document).delegate('body','click',function(e){

                    if($('.selectLang').length >0){

 해당 영역 이외의 곳을 클릭했을때 삭제 해주는소스 

                        $('#previewLayer').remove();

                    }

                });

                

클릭해도 안지워지는영역

                $(document).delegate('#previewLayer, .preview', 'click', function(e){

                    e.stopPropagation();

                });

Posted by 이상욱1
,


http://okky.kr/article/206730

<a href="#"> 이 원인 

Posted by 이상욱1
,