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

I am using Jquery Coockie Plugin from GitHub https://github.com/carhartl/jquery-cookie.

I am getting JSON Object from Server and can iterate that and it works and adds to COOKIE since I need to access this JSON object my other Site Pages. Cookie is available on all Pages and I get OBJECT Back from Cookie by Name but I can not ITERATE this OBJECT that I suppose is JSON Object. Following my code

<script type="text/javascript">
$(document).ready(function () {
$.ajax({
url: "/ODPrice.axd?skuList=sku1,sku2,sku3,sku4",
dataType: "json",
asyc: true,
type: "get",
data: "json",
success: function (serverData) {
alert(serverData);
CreateJSONAndSetCookie(serverData);
},
error: function (jqXHR, textStatus, errorThrown) {
alert(textStatus + '  ' + errorThrown);
}
});
function CreateJSONAndSetCookie(sa) {               
$.cookie("TaylorODPriceCookie", sa, { expires: 7, path: '/' });
$(sa).each(function (i) {
alert(this.sku);
});               
}
});
</script>

On other Site Pages, I am getting this JSON Object as below

<script type="text/javascript">
$(document).ready(function () {
var json = $.cookie('TaylorODPriceCookie');
$(json).each(function(key){
alert(this.sku); // JS error "Error: Syntax error, unrecognized expression:[object Object]

});
});

</script>

Any help will be hightly appreciated guys.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.