I am using jquery cookie plugin and trying to set cookie and read cookie betwen browser sessions:
I have this piece of code to set the cookie using jquery:
<script type="text/javascript">
$(document).ready(function(){
$.cookie("example", "foo", { path: 'C:/temp', expires: 7 });
alert( $.cookie("example") );
});
</script>
I get undefined error. Any ideas?