Getting Cookie Value using javascript

by Vinoth 2010-02-02 16:48:54

<h1>The Below code is used to get Cookie using javascript</h1>
<script type="text/javascript">
function Get_Cookie( 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 ) );
}
alert(Get_Cookie("eg"));
</script>

Tagged in:

1004
like
0
dislike
0
mail
flag

You must LOGIN to add comments