Forum Moderators: open
I'm experimenting for the first time with creating and accessing cookies using Javascript.
I have this code on page A:
<script type="text/javascript">
<!--
document.cookie = "mycookie=" + escape("This is my cookie");
window.alert("mycookie=" + escape("This is my cookie"));
// -->
</script>
And I have this code on page B (in the same directory as page A):
<script type="text/javascript">
<!--
var cookieSet = document.cookie;
var cookieSetParts = cookieSet.split("=");
var cookieName = cookieSetParts[0];
var cookieValue = unescape(cookieSetParts[1]);
alert(cookieName);
alert(cookieValue);
// -->
</script>
Then I load page A to create the cookie after which I go to page B to access the cookie. Everything works as I expected it to in Firefox, Opera and IE6. On page B, I get two alerts displaying first the cookie name ('mycookie') and then the unescaped cookie value ('This is my cookie').
However when I do the whole thing in IE7, page B displays "This is my cookie; UserCode" for the cookie value.
What the heck is this 'UserCode' business? I can't find anything in Google about it at all.
Any idea?
// Cookie Functions
// Unknown Author - but Thanks!function getCookie( name ) {
var start = document.cookie.indexOf( name + "=" );
var len = start + name.length + 1;
if ( (!start ) && ( name!= document.cookie.substring( 0, name.length ) ) ) {
return null;
}
if ( start == -1 ) return null;
var end = document.cookie.indexOf( ';', len );
if ( end == -1 ) end = document.cookie.length;
return unescape( document.cookie.substring( len, end ) );
}function setCookie( name, value, expires, path, domain, secure ) {
var today = new Date();
today.setTime( today.getTime() );
if ( expires ) {
expires = expires * 1000 * 60 * 60 * 24;
}
var expires_date = new Date( today.getTime() + (expires) );
document.cookie = name+'='+escape( value ) +
( ( expires )? ';expires='+expires_date.toGMTString() : '' ) + //expires.toGMTString()
( ( path )? ';path=' + path : '' ) +
( ( domain )? ';domain=' + domain : '' ) +
( ( secure )? ';secure' : '' );
}function deleteCookie( name, path, domain ) {
if ( getCookie( name ) ) document.cookie = name + '=' +
( ( path )? ';path=' + path : '') +
( ( domain )? ';domain=' + domain : '' ) +
';expires=Thu, 01-Jan-1970 00:00:01 GMT';
}