cookie 3

cookie for jQuery and mulder's helper

jquery Cookie 플러그인 : https://github.com/carhartl/jquery-cookie 이왕 jquery 를 사용하시면 cookie 처리 플러인을 이용합니다. $.cookie('the_cookie'); //cookie취득 $.cookie('the_cookie', 'the_value'); //cookie를 셋트$.cookie('the_cookie', 'the_value', { expires: 7 }); //쿠키의 유효기간을 7일간으로 지정 $.cookie('the_cookie', '', { expires: -1 }); //cookie 삭제$.cookie('the_cookie', null); //cookie 삭제 아래는 초간단 사용법 입니다. /** mulder 가만 든 초간단 fu..

프로그램/script 2012.02.18

바로 사용할 수 있는 javascript common 함수 13 가지

쉽게 갈수 있다면 쉽게 가죠. 참고로 여기 있는 스크립트는 여기저기서 카피한것입니다... 출처가 여러군데여서 ... 그냥 모두에게 감사 드립니다. DO COPY & PASTE :) // 플래쉬를 손쉽게 사용하기. /** @id Flash */ var Flash = function (sSwfUrl, iWidth, iHeight, sWmode) { this.params = {}; this.vals = {}; this.atts = {}; if (sSwfUrl) { this.setAtt("src", sSwfUrl); this.setParam("movie", sSwfUrl); } if (iWidth) { this.setAtt("width", iWidth); } if (iHeight) { this.setAtt("h..

프로그램/script 2012.01.11