指定した名前のcookieを削除したいときに、「jquery.cookie.js」というプラグインを利用するととても簡単にサクッと削除できます。
利用方法
ダウンロード
https://github.com/carhartl/jquery-cookie
読み込む
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> <script type="text/javascript" src="/jquery.cookie.js"></script> //ダウンロードしたjQueryプラグインのファイル
記述する
ex. testStatという名前のcookieを削除したい場合は以下のように記述します。
<script type="text/javascript"> $.removeCookie("mapStat"); </script>