자바스크립트 에서 날짜 나 월을 2자리로 표시하는 방법 날짜 2자리 표시 (“0” + this.getDate()).slice(-2); 월 2자리 표시 (“0” + (this.getMonth() + 1)).slice(-2); https://stackoverflow.com/questions/6040515/how-do-i-get-month-and-date-of-javascript-in-2-digit-format
Jquery 토글메뉴, Accordion Menu
Jquery toggle 간단한 예제 Jquery Accordion Menu http://cssmenumaker.com/blog/flat-jquery-accordion-menu-tutorial http://cssmenumaker.com/blog/wordpress-accordion-menu-tutorial http://viralpatel.net/blogs/create-accordion-menu-jquery/
Jquery is not a funciton (wordpress) 에러 발생시
Jquery is not a funciton (wordpress) 에러가 발생하는 이유는 이렇다. 워드프레스가 포함하고 있는 jquery.js 에 jQuery.noConflict() 때문 따라서 jquery 사용시 아래 예제 구문처럼 사용해야한다. In WordPress jQuery.noConflict() is called on the jQuery file it includes (scroll to the bottom of the file it’s including for jQuery to see this), which means $ doesn’t work, but jQuery […]
Jquery UI–Datepicker 관련 설정
의도한 것보다 달력사이트가 크게 나올때 jquery.ui.theme.css 에서 .ui-widget에 font-size를 0.7em으로 변경한다. 참조:http://goo.gl/kvry3 버튼과 텍스트박스 둘다 클릭시 달력이 팝업되게 하려면showOn: “both”, 맨날 할 때마다 자꾸 까먹어서 찾아보게 된다~ ㅎ;
Jquery 메뉴 네비게이션 및 쿠키관련
[jQuery] Cookie 플러그인 http://nosmoke.cctoday.co.kr/628 cookie를 배열로 저장하기 http://blog.naver.com/PostView.nhn?blogId=mysk4521&logNo=40146622939 Simple JQuery Accordion menu http://www.i-marco.nl/weblog/jquery-accordion-menu-redux2/ jQuery Concertina Menu Plugin with Cookies http://www.inventpartners.com/content/jquery-concertina-menu-plugin jQuery TreeView Menu http://www.dynamicdrive.com/dynamicindex1/treeview/index.htm ★ http://www.dynamicdrive.com/dynamicindex1/treeview/demo/index.html (데모)