Hi All
I have a bit of a problem, i am creating a cookie and adding content not a problem, but when i try and retrieve the content i am having the problem,
basically i have the following values in my cookie
sections:3®ion1:London&nation1:England®ion2:Manchester&nation2:England®ion3:Glasgow&nation3 :Scotland
the regions and nations could be empty and could go up to 10 or more i.e region10: and nation10:
the sections value will always relate to how many i have - so in this example there are 3
so what i was trying to do was a simple for loop and add the value onto the end like this
for(i=0;i<sections;i++){
alert(cookie.region);
alert(cookie.nation);
}
but it tells me
Error: cookie.region has no properties
Can anyone help me loop through this?
I have a bit of a problem, i am creating a cookie and adding content not a problem, but when i try and retrieve the content i am having the problem,
basically i have the following values in my cookie
sections:3®ion1:London&nation1:England®ion2:Manchester&nation2:England®ion3:Glasgow&nation3 :Scotland
the regions and nations could be empty and could go up to 10 or more i.e region10: and nation10:
the sections value will always relate to how many i have - so in this example there are 3
so what i was trying to do was a simple for loop and add the value onto the end like this
for(i=0;i<sections;i++){
alert(cookie.region);
alert(cookie.nation);
}
but it tells me
Error: cookie.region has no properties
Can anyone help me loop through this?