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..