Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I set a cookie on Rails like this,

cookies[:account] = { :value => @account.to_s, :expires => 3.month.from_now }

Which seems to be working fine, a simple debug @account shows

--- myvalue
…

But when calling the cookie using jQuery.Cookie It return a "[object Object]" instead.

> $.cookie('account');
"[object Object]"

Any idea why is this happening and how to solve it?

share|improve this question
Do you change any of jQuery Cookie's parameters? – Julien Royer Nov 15 '12 at 22:37
No. Haven't changed anything. – Martin Nov 15 '12 at 22:38

1 Answer

up vote 1 down vote accepted

[object Object] is the return value from Object.toString(), so that means that $.cookie('account') is returning a non-Number, non-String object.

On way to start figuring out what's in the return value (in an effort to help you determine what's in the object returned) is to loop over the properties to figure it out.

So, like this:

var obj = $.cookie('account');
var msg = [];
for(var i in obj)  msg.push( i +" = " + obj[i]);
alert(msg.join("\n")); // or console.log(msg.join("\n"));
share|improve this answer
Solved. I was accidentally overwriting the cookie. – Martin Nov 16 '12 at 1:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.