Hello
I want to store the href value in a cookie, trouble is when i do the cookie is escaping the forward slashes, so for example
code is
$.cookie ("mycookie", $link.attr("href"), { path: '/', expires: 7 });
html is
<li><a id="czechrepublic" href="/cz/cz.html">Česká republika</a></li>
When i store the href it is being stored as
%2Fcz%2Fcz.html
But i need it to be stored as /cz/cz.html is there a way of UNescaping characters in Jquery, i have seen this in standard javascript cookie tutorials but i am not sure how to do it with the Jquery cookie plugin
Thanks
Joe