jQuery.cookie('monster', { path: '/sesame/' });
jQuery.cookie('monster', 'big', { path : '/sesame/'});How can I read this cookie? The following snippet does not work (it returns `null`) jQuery.cookie('monster');I tried this (rather silly, I know) but it sets a cookie, not read one.jQuery.cookie('monster', { path: '/sesame/' });