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.