본문 바로가기

Local Oriented/jQuery

(132)
jQuery 플러그인, Vanity. 슬라이더, 탭, 팁, 페이지, 스팟라잇 등등 2013년도 jQuery 프러그인 60선http://designbeep.com/2013/12/13/jquery-plugins-2013/ http://vanity.enavu.com/http://www.cmsfactory.net/node/10224, placeholder 호환성 세팅(IE8, IE7)
[모음글] Type http://findfun.tistory.com/422 아래와 같이 type 을 체크할 수도 있다. $('input[name="name1"], select[name="name1"], textarea[name="name1"]').each(function(){ var t1 = this.type; if(t1=='text'){ alert(t1); }else if(t1=='hidden'){ alert(t1); }else if(t1=='radio'){ alert(t1); }else if(t1=='checkbox'){ alert(t1); }else if(t1=='image'){ alert(t1); }else if(t1=='select-one'){ alert(t1); }else if(t1=='textarea'){ al..
document ready 와 window load 의 차이 http://creator1022.tistory.com/156#comment7719602 document 는 DOM 구조를 이야기 하는 것으로,$(document).ready(function(){ // 이곳에 기술되는 내용은 DOM 구조가 메모리에 올려진 다음 바로 실행되므로, // CSS 나 JS, 이미지, iframe, 외부 URL 인용 등이 작동하기 이전에 실행될 수 있네요..}); 이에 반해서, window 는 브라우저의 모든 개체를 아우르기 때문에,$(window).load(function(){ // 이곳에 기술되는 내용은 화면에 필요한 모든 요소들이 웹브라우저 메모리에 모두 올려진 다음에 실행되므로, // CSS 나 JS, 이미지, iframe, 외부 URL 인용 등이 작동된 다음에 실행될다 ..
jQueryMobile 1.1.0, Sencha Touch 2.0, JMC 1.2.0 비교 http://helloworld.naver.com/helloworld/74717?tw_p=twt 에서 퍼 왔습니다.네이버의 국산 JMC 의 경우 jQuery 호환이라든가 반응형웹 미지원 등이 껄끄럽긴 하지만, 속도가 빠르다는 것..jQuery 를 사용하는 분들의 jQueryMobile 에 대한 원망이 바로 속도라는 것은 되새길 필요가 있어요.다만, 크로스(멀티)브라우징에 멍들지 않으려면 역시나 jQuery 와 jQueryMobile 의 조합인 걸까요..? cf.. jQuery 1.7 과 Jindo 1.5, Jindo 2.0 성능 비교, F/W 구조http://helloworld.naver.com/helloworld/43939
jQuery 플러그인, 다양한 포맷의 주석달기 annotator http://okfnlabs.org/annotator/demo/
ajaxSetup http://findfun.tistory.com/389 동일한 세팅으로 호출하는 것이라면 사용할 만 합니다.
jQuery 플러그인, 바로가기 메뉴, 팝업 메뉴 https://swisnl.github.io/jQuery-contextMenu/demo.htmlMIT 라이센스
beforeunload http://stove99.tistory.com/128 페이지 이탈 관리