<h2>TITLE INFO</h2>
<div>text 1</div>
<div>text 2</div>
<div>text 3</div>
jQuery('h2').toggle(function () {
jQuery('body').addClass('order_list');
$.cookie('info_type', 'order_list', {
expires: 30
});
}, function () {
jQuery('body').removeClass('order_list');
$.cookie('info_type', null);
});
var order_list_var = $.cookie('info_type');
jQuery('body').addClass(order_list_var);
Cookie が設定されていてページをリロードすると、h2 をクリックしてみてください: 何も起こらない 2 回目にクリックした場合にのみ、Cookie とクラスが削除されます