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?